/* =========================
   AUTH POPUP
========================= */

.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.auth-box {
    background: rgba(20,20,30,0.95);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 0 60px rgba(255,140,190,0.35);
    text-align: center;
}

.auth-box h2 {
    margin-bottom: 20px;
}

.auth-box input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    margin-bottom: 14px;
    font-size: 1rem;
}

.auth-box button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg,#ff8fb8,#9b7cff);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.auth-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    cursor: pointer;
}

.auth-switch {
    margin-top: 16px;
    font-size: 0.9rem;
}

.auth-switch a {
    color: #ff8fb8;
    cursor: pointer;
}

.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.auth-modal.active {
    display: flex;
}

.auth-box {
    background: rgba(20,20,30,0.95);
    padding: 40px;
    border-radius: 24px;
    max-width: 420px;
    width: 90%;
    color: #fff;
}

.auth-box input,
.auth-box select {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: none;
}

.auth-box button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

