/**
 * Vue Authentication Component Styles
 * Phase 3 of Vue Migration - Authentication System
 * Apple-inspired minimalist design
 */

/* ========== Vue Auth Button ========== */
#vueAuthApp {
    display: contents;
}

/* ========== User Info (Logged In State) ========== */
.user-info {
    text-align: center;
    padding: 16px 0 28px;
}

.user-avatar {
    margin-bottom: 12px;
}

.user-avatar svg {
    width: 56px;
    height: 56px;
}

.user-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #1d1d1f;
    letter-spacing: -0.3px;
}

.user-type {
    font-size: 14px;
    color: #86868b;
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
}

/* ========== Logout Button ========== */
.logout-btn {
    width: 100%;
    padding: 14px 16px;
    background: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.logout-btn:hover {
    background: #e8e8ed;
    border-color: #86868b;
}

.logout-btn:active {
    transform: scale(0.98);
    background: #d2d2d7;
}

/* ========== Login Terms ========== */
.login-terms {
    font-size: 12px;
    color: #86868b;
    text-align: center;
    line-height: 1.7;
}

.login-terms a {
    color: #1d1d1f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-terms a:hover {
    text-decoration: none;
}

/* ========== Success Message ========== */
.login-success-message .success-text {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #000;
}

.login-success-message .success-subtext {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ========== Loading State ========== */
.login-btn-facebook:disabled,
.login-btn-apple:disabled,
.login-btn-instagram:disabled,
.login-btn-guest:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== Mobile Responsive ========== */
@media (max-width: 480px) {
    .login-modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .login-modal-title {
        font-size: 1.5em;
    }

    .login-modal-subtitle {
        font-size: 0.85em;
        margin-bottom: 24px;
    }

    .login-options {
        gap: 10px;
    }

    .login-btn-facebook,
    .login-btn-apple,
    .login-btn-instagram,
    .login-btn-guest {
        padding: 14px;
        font-size: 14px;
    }

    .user-avatar svg {
        width: 50px;
        height: 50px;
    }

    .user-name {
        font-size: 18px;
    }
}