/* ==========================================================================
   SAF Auth CSS - Estilos de Autenticação
   Sistema de Acompanhamento de Franqueados
   ========================================================================== */

/* ===== LOGIN PAGE ===== */
.login-page {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    line-height: 1.6;
}

/* ===== LOGIN BRANDING PANEL ===== */
.login-branding {
    background: #6b6b6b;
    position: relative;
    overflow: hidden;
}

.login-branding-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23ffffff\' fill-opacity=\'1\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* ===== GOOGLE BUTTON ===== */
.saf-btn-google {
    background: #4285f4;
    color: #fff;
}

.saf-btn-google:hover {
    background: #3367d6;
    color: #fff;
}

/* ===== ERROR BOX ===== */
.auth-error-box {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.auth-error-box.hidden {
    display: none;
}

/* ===== INFO BOX ===== */
.auth-info-box {
    background: rgba(232, 229, 220, 0.5);
    border: 1px solid #d4d0c8;
    padding: 16px;
}

/* ===== FEATURE LIST ===== */
.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.auth-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(250, 176, 5, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-feature-icon svg {
    width: 16px;
    height: 16px;
    color: #fab005;
}

/* ===== FOOTER BRANDING ===== */
.auth-footer-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-footer-branding img {
    height: 24px;
    opacity: 0.6;
}

.auth-footer-branding .divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-footer-branding span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== DIVIDER ===== */
.auth-divider {
    position: relative;
    margin: 32px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.auth-divider-line {
    width: 100%;
    border-top: 1px solid #d4d0c8;
}

.auth-divider-text {
    position: relative;
    display: flex;
    justify-content: center;
}

.auth-divider-text span {
    background: #fffefa;
    padding: 0 16px;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
