/* login.css - Versão Final (Clone Horizon Connect) */

body {
    background-color: #f0f2f5;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-login {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background-color: white;
}

/* --- LOGO HORIZON --- */
.brand-wrapper {
    display: inline-flex;
    flex-direction: column;
    /* Alinha a curva no centro do texto */
    align-items: center;
    position: relative;
    padding-bottom: 10px;
}

.brand-title {
    font-size: 3rem;

    /* AJUSTE DO PESO: Deixei 700 (Bold) em vez de 800 (ExtraBold) para não ficar tão grosso */
    font-weight: 700;

    color: #1e293b; /* Azul escuro quase preto */
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0;
    z-index: 2; /* Garante que o texto fique visualmente acima se a linha tocar */
}

.brand-line {
    width: 100%;
        height: 6px;
        border-top: 2px solid #0d6efd;
        border-radius: 50%;
        background: transparent;
        margin-top: -3px;
        transform: none;
}

.brand-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    /* ALINHAMENTO: Joga o subtítulo para a direita, dando aquele visual de assinatura */
    align-self: flex-end;

    margin-top: -5px; /* Ajuste fino para aproximar da linha */
    margin-right: 5px;
}
/* ------------------------------------------- */

.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

.btn-google {
    background-color: white;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-weight: 500;
    padding: 10px;
    transition: all 0.2s;
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #cce0fc;
    transform: translateY(-1px);
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}