﻿/* Ilustração do hero — não existe no projeto principal */
.login-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

/* Divisor "ou" — elemento simples de login */
.divider-or {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 700;
}

    .divider-or::before,
    .divider-or::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--app-border);
    }

/* Wrapper do input com ícone — padrão de input com ícone interno */
.input-icon-wrap {
    position: relative;
}

    .input-icon-wrap .app-input {
        padding-left: 44px;
    }

    .input-icon-wrap .i-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--app-muted);
        font-size: 18px;
        pointer-events: none;
    }

    .input-icon-wrap .i-eye {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--app-muted);
        font-size: 18px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .input-icon-wrap .app-input.with-eye {
        padding-right: 44px;
    }

/*@media (min-width: 768px) {
    body {
        background: #EEF0FB;
        align-items: center;
        min-height: 100vh;
    }

    #app {
        width: 440px;
        min-height: auto;
        border-radius: 24px;
        overflow: hidden;
        margin: 40px auto;
        box-shadow: 0 8px 48px rgba(0,0,0,.18);
    }
}*/
