/* Login page - estilo clean (inspirado em telas de login minimalistas) */
body.login-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.login-center {
    width: 100%;
    max-width: 28rem;
}

.login-card {
    width: 100%;
    position: relative;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.login-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.login-logo {
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-login-cta:hover {
    background-color: #2d2778;
}

/* Remove o fundo azul do autocomplete do navegador - mantém aparência igual à digitação manual */
.input-field input:-webkit-autofill,
.input-field input:-webkit-autofill:hover,
.input-field input:-webkit-autofill:focus,
.input-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    -webkit-text-fill-color: #111827 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input-field {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-field:focus-within {
    border-color: #3730a3;
    box-shadow: 0 0 0 2px rgba(55, 48, 163, 0.2);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}
