/* css/login-styles.css */
body.login-page { /* Adicione esta classe ao body da página de login */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    background-color: white;
    padding: 2rem; /* p-8 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); /* shadow-2xl */
    width: 100%;
    max-width: 28rem; /* max-w-md */
}

@media (min-width: 768px) { /* md breakpoint */
    .login-container {
        padding: 3rem; /* md:p-12 */
    }
}

.login-title {
    text-align: center;
    margin-bottom: 2rem; /* mb-8 */
}

.login-title h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    /* color: #005EC4; /* primary-text - pode ser herdado ou definido aqui */
}

.login-title p {
    color: #4B5563; /* text-gray-600 */
    margin-top: 0.5rem; /* mt-2 */
}

.error-message {
    background-color: #FEE2E2; /* red-100 */
    color: #B91C1C; /* red-700 */
    padding: 0.75rem;
    border-radius: 0.375rem; /* rounded-md */
    margin-bottom: 1rem;
    font-size: 0.875rem;
    border: 1px solid #FECACA; /* red-300 */
}

.form-group {
    margin-bottom: 1.5rem; /* mb-6 */
}

.form-group label {
    display: block;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #374151; /* text-gray-700 */
    margin-bottom: 0.25rem; /* mb-1 */
}

.login-button {
    width: 100%;
    color: white;
    padding: 0.75rem 1rem; /* py-3 px-4 */
    border-radius: 0.5rem; /* rounded-lg */
    font-weight: 600; /* font-semibold */
    transition: background-color 0.3s;
    border: none; /* Removendo borda padrão do botão */
}
.login-button:hover {
    background-color: #004799; /* Um tom mais escuro do primary-bg */
}
.login-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 94, 196, 0.5); /* focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50 */
}
.login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.recovery-password-container {
    text-align: center;
    margin-top: 1rem;
}

.recovery-password-button {
    background: none;
    border: none;
    color: #005EC4; /* primary-text */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    cursor: pointer;
    text-decoration: none;
    padding: 0.5rem;
    transition: opacity 0.3s, text-decoration 0.3s;
}

.recovery-password-button:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.recovery-password-button:focus {
    outline: none;
    text-decoration: underline;
}

.recovery-password-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: none;
}
