/* ===== Reset básico ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background: #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	background: #fff;
	padding: 30px 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	width: 100%;
	max-width: 400px;
}

h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}

form {
	display: flex;
	flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
	padding: 12px 15px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: border-color 0.3s;
}

input:focus {
	border-color: #007BFF;
	outline: none;
}

button {
	padding: 12px;
	background: #007BFF;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background: #0056b3;
}

.tabs {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}

.tab {
	cursor: pointer;
	padding: 10px 20px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s;
}

.tab.active {
	border-color: #007BFF;
	font-weight: bold;
}

.formulario {
	display: none;
}

.formulario.active {
	display: block;
}