/* Estilos generales */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	background-color: #f8faf9;
	color: #1a1a2e;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
	background-color: rgba(248, 250, 249, 0.9);
}

/* Contenedor principal */
.login-container {
	width: 100%;
	max-width: 400px;
	padding: 0 20px;
}

/* Tarjeta de login */
.login-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(13, 140, 95, 0.2);
	overflow: hidden;
	text-align: center;
}
.login-header {
	background: linear-gradient(135deg, #0d8c5f, #12a274);
	color: white;
	padding: 25px;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 5px;
}
.logo span {
	color: #15c78a;
}

.login-subtitle {
	font-size: 14px;
	opacity: 0.9;
}
.login-body {
	padding: 30px;
}

/* Formulario */
.form-group {
	margin-bottom: 20px;
	text-align: left;
}
.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #0d8c5f;
	font-size: 14px;
}
.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #d1d9d6;
	border-radius: 5px;
	font-size: 16px;
	transition: all 0.3s;
}
.form-control:focus {
	outline: none;
	border-color: #12a274;
	box-shadow: 0 0 0 3px rgba(18, 162, 116, 0.1);
}

.btn {
	width: 100%;
	padding: 14px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	font-size: 16px;
}
.btn-primary {
	background-color: #0d8c5f;
	color: white;
}
.btn-primary:hover {
	background-color: #12a274;
}

.login-links {
	margin-top: 20px;
	font-size: 14px;
}
.login-links a {
	color: #12a274;
	text-decoration: none;
	transition: color 0.3s;
}
.login-links a:hover {
	color: #0d8c5f;
	text-decoration: underline;
}

.divider {
	display: flex;
	align-items: center;
	margin: 20px 0;
	color: #718096;
	font-size: 14px;
}
.divider::before, .divider::after {
	content: "";
	flex: 1;
	border-bottom: 1px solid #e8edeb;
}
.divider::before {
	margin-right: 10px;
}
.divider::after {
	margin-left: 10px;
}

.social-login {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}
.social-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: 1px solid #e8edeb;
	cursor: pointer;
	transition: all 0.3s;
}
.social-btn:hover {
	background-color: #e8f8f2;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
	.login-card {
		border-radius: 0;
	}
	
	body {
		background-image: none;
		background-color: #f8faf9;
	}
}