/* === NEWSLETTER LITE: PG SOFT CANVAS EDITION === */

.nl-rwb-wrapper {
    max-width: 500px; /* Perkecil sedikit biar lebih fokus dan proporsional dengan logo */
    margin: 0 auto; /* Center */
    font-family: 'Poppins', sans-serif; /* Ganti Arial jadi Poppins */
}

.nl-rwb-form {
    display: flex;
    flex-direction: column; /* UBAH KE VERTIKAL: Input atas, Tombol bawah */
    gap: 12px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, .8); /* Border Soft Slate khas kita */
    border-radius: 16px;
    background: rgba(255,255,255,.6); /* Transparan kaca */
    backdrop-filter: blur(10px); /* Efek Glassmorphism */
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

/* Sembunyikan ikon amplop, kita pakai Logo yang lebih premium */
.nl-envelope { 
    display: none; 
}

/* Input Email */
#nl-email {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, .8);
    background: rgba(255,255,255,0.8);
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    color: #0f172a;
    outline: none;
    transition: border-color .3s ease, box-shadow .3s ease;
    box-sizing: border-box;
}

#nl-email:focus {
    border-color: #22D3EE;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

/* Tombol Submit: CYAN GRADIEN PUTIH */
#nl-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(90deg, #22D3EE, #FFFFFF); /* Gradien Cyan ke Putih (kiri ke kanan) */
    color: #0e7490; /* Teks Dark Cyan biar terbaca di gradasi */
    font-weight: 600;
    border: 1px solid rgba(34, 211, 238, 0.3); /* Penting: Border halus biar ujung putihnya gak ilang ke background */
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.15);
    transition: transform .2s ease, box-shadow .2s ease, background .3s ease;
    box-sizing: border-box;
}

/* Hover: Cyan menguat, teks jadi putih */
#nl-submit:hover {
    background: linear-gradient(90deg, #06b6d4, #F0FDFA); 
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* Pesan Error/Success */
.nl-message {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0f172a;
    display: none;
}

/* Teks Note bawah */
.nl-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 12px;
    text-align: center;
}

/* Responsive Mobile */
@media (max-width:480px) {
    .nl-rwb-form {
        padding: 20px 16px;
    }
    #nl-email, #nl-submit {
        padding: 12px 16px;
        font-size: .85rem;
    }
}
/* === VIP CONTENT LOCK STYLES === */
.nl-vip-lock-box {
    background: linear-gradient(135deg, #F8FAFC, #ECFEFF);
    border: 2px dashed rgba(6,182,212,.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.nl-vip-icon { font-size: 3rem; margin-bottom: 16px; }
.nl-vip-title { font-size: 1.3rem; font-weight: 700; color: #0F172A; margin-bottom: 10px; }
.nl-vip-text { font-size: .9rem; color: #64748B; line-height: 1.6; margin-bottom: 24px; }
.nl-vip-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.nl-vip-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}
.nl-vip-btn-primary {
    background: #0891B2;
    color: #FFF;
    box-shadow: 0 4px 10px rgba(6,182,212,.3);
}
.nl-vip-btn-primary:hover { background: #0E7490; transform: translateY(-2px); }

.nl-vip-btn-secondary {
    background: #FFF;
    color: #0891B2;
    border: 1px solid rgba(6,182,212,.3);
}
.nl-vip-btn-secondary:hover { border-color: #0891B2; }

.nl-vip-expired { border-color: #F59E0B; background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.nl-vip-expired .nl-vip-title { color: #B45309; }
.nl-vip-expired .nl-vip-btn-primary { background: #D97706; box-shadow: 0 4px 10px rgba(217,119,6,.3); }
.nl-vip-expired .nl-vip-btn-primary:hover { background: #B45309; }
/* === ACCOUNT & LOGIN STYLES === */
.nl-account-wrap {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(6,182,212,.1);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(6,182,212,.05);
    text-align: center;
}
.nl-account-title { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin-bottom: 8px; }
.nl-account-desc { font-size: .85rem; color: #64748B; margin-bottom: 24px; }

/* Override WP Login Form Styles */
.nl-account-wrap .login-username, 
.nl-account-wrap .login-password { text-align: left; margin-bottom: 16px; }
.nl-account-wrap label { display: block; font-size: .72rem; font-weight: 600; margin-bottom: 6px; color: #475569; }
.nl-account-wrap input[type="text"], 
.nl-account-wrap input[type="password"] {
    width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 10px; font-size: .85rem; outline: none; transition: all .2s; background: #FFF; font-family: 'Poppins', sans-serif;
}
.nl-account-wrap input[type="text"]:focus, 
.nl-account-wrap input[type="password"]:focus { border-color: #0891B2; box-shadow: 0 0 0 3px rgba(6,182,212,.1); }

.nl-account-wrap .login-remember { font-size: .78rem; margin-bottom: 20px; text-align: left; }
.nl-account-wrap .login-submit .button-primary {
    width: 100%; padding: 14px; background: linear-gradient(135deg,#0891B2,#0F172A); color: #FFF; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .3s; font-family: 'Poppins', sans-serif;
}
.nl-account-wrap .login-submit .button-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(6,182,212,.3); }

.nl-account-footer { margin-top: 20px; font-size: .82rem; color: #64748B; }
.nl-account-footer a { color: #0891B2; text-decoration: none; font-weight: 600; }

/* Dashboard Styles */
.nl-dashboard-wrap { text-align: left; }
.nl-dash-header { margin-bottom: 24px; border-bottom: 1px solid #E2E8F0; padding-bottom: 16px; }
.nl-dash-header h3 { font-size: 1.3rem; color: #0F172A; }
.nl-dash-header h3 span { color: #0891B2; }
.nl-dash-header p { font-size: .85rem; color: #64748B; margin-top: 4px; }

.nl-dash-status { background: #F8FAFC; border: 1px solid rgba(6,182,212,.1); border-radius: 12px; padding: 16px; margin-bottom: 24px; font-size: .92rem; color: #475569; }
.nl-status { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: .76rem; font-weight: 700; margin-top: 6px; }
.nl-status-elite { background: #0F172A; color: #22D3EE; }
.nl-status-standard { background: #ECFEFF; color: #0891B2; }
.nl-status-expired { background: #FEF2F2; color: #EF4444; }

.nl-renew-btn { display: inline-block; margin-left: 10px; padding: 6px 14px; background: #D97706; color: #FFF; border-radius: 8px; text-decoration: none; font-size: .72rem; font-weight: 600; }
.nl-renew-btn:hover { background: #B45309; }

.nl-logout-btn { display: inline-block; padding: 10px 20px; border: 1px solid #E2E8F0; background: #FFF; border-radius: 8px; text-decoration: none; font-weight: 600; color: #EF4444; font-size: .85rem; transition: all .2s; }
.nl-logout-btn:hover { background: #FEF2F2; border-color: #EF4444; }
