/* Estilos específicos para a seção de login */
.login-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	background-color: #f7f7f7;
}

.login-section .max-w-md {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	width: 100%;
	max-width: 400px;
}

/* Título */
.login-section .login-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #6e1617;
}

/* Inputs */
.login-section input[type='text'],
.login-section input[type='password'] {
	border: 1px solid #bba05d;
	border-radius: 6px;
	padding: 0.75rem;
	width: 100%;
	font-size: 0.9rem;
	color: #333;
}

.login-section input[type='text']:focus,
.login-section input[type='password']:focus {
	outline: none;
	border-color: #6e1617;
	box-shadow: 0 0 0 2px rgba(110, 22, 23, 0.2);
}

/* Botão */
.login-section .btn-login {
	background-color: #6e1617;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	padding: 0.75rem;
	transition: background-color 0.3s ease;
	width: 100%;
}

.login-section .btn-login:hover {
	background-color: #5a1415;
}

/* Links */
.login-section .text-secondary {
	color: #bba05d;
	transition: color 0.3s ease;
}

.login-section .text-secondary:hover {
	color: #6e1617;
}

.login-section .text-center {
	margin-top: 1rem;
}

.login-section .text-center a {
	text-decoration: none;
	font-size: 0.875rem;
}
