/* Premium Card Design
 Signup ====*/
   .signup-card-premium {
        background: #ffffff; border-radius: 35px; box-shadow: 0 30px 80px rgba(0,0,0,0.1);
        overflow: hidden; border: 1px solid #f1f5f9; animation: slideUp 0.7s ease-out;
    }
    @keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

    /* Header Design */
    .signup-header {
        background: #1a1c23; padding: 40px 30px; text-align: center; color: white;
        position: relative;
    }
    .header-icon {
        width: 60px; height: 60px; background: #f1c40f; color: #1a1c23;
        border-radius: 18px; display: flex; align-items: center; justify-content: center;
        margin: 0 auto 15px; font-size: 24px; transform: rotate(-10deg);
    }
    .title-text { font-weight: 850; margin: 0; font-size: 28px; letter-spacing: -0.5px; }
    .subtitle-text { opacity: 0.8; margin-top: 5px; font-size: 14px; font-weight: 500; }

    .card-body-custom { padding: 40px; }

    /* Input Styles */
    .input-group-custom { margin-bottom: 20px; }
    .premium-label { font-weight: 700; color: #475569; margin-bottom: 10px; font-size: 14px; display: block; }
    .premium-input {
        width: 100%; padding: 15px 18px; border: 2.5px solid #f1f5f9; border-radius: 16px;
        font-size: 15px; transition: 0.3s; background: #f8fafc; box-sizing: border-box;
    }
    .premium-input:focus {
        border-color: #f1c40f; background: #fff; outline: none;
        box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.1);
    }

    /* Password Wrapper */
    .password-wrapper { position: relative; }
    .toggle-pass {
        position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
        background: none; border: none; color: #94a3b8; cursor: pointer; z-index: 10;
    }

    /* Primary Button */
    .main-signup-btn {
        width: 100%; background: #f1c40f; color: #1a1c23; padding: 18px; border: none;
        border-radius: 18px; font-weight: 800; font-size: 16px; cursor: pointer;
        transition: 0.3s; margin-top: 15px; box-shadow: 0 10px 20px rgba(241, 196, 15, 0.2);
    }
    .main-signup-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(241, 196, 15, 0.3); }

    /* Divider */
    .divider { text-align: center; margin: 35px 0 25px; position: relative; }
    .divider::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #f1f5f9; z-index: 1; }
    .divider span { background: #fff; padding: 0 15px; position: relative; z-index: 2; color: #94a3b8; font-size: 12px; font-weight: 800; }

    /* Social Grid */
    .social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .social-btn {
        display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px;
        border: 2px solid #f1f5f9; border-radius: 16px; text-decoration: none; color: #1e293b;
        font-weight: 700; font-size: 14px; transition: 0.3s;
    }
    .social-btn:hover { background: #f8fafc; border-color: #cbd5e1; }

    /* Alert Boxes */
    .custom-alert { padding: 14px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; font-weight: 600; }
    .error-bg { background: #fff1f2; color: #e11d48; }
    .success-bg { background: #f0fdf4; color: #16a34a; }

    .signup-footer { text-align: center; margin-top: 30px; border-top: 1px solid #f1f5f9; padding-top: 25px; }
    .login-link { color: #f1c40f; font-weight: 800; text-decoration: none; }
    .back-home { display: block; margin-top: 15px; font-size: 13px; color: #94a3b8; text-decoration: none; font-weight: 600; }

/* ==========================================
   4. DELETE ACCOUNT PAGE STYLES
   ========================================== */
.delete-page-wrapper {
    background: radial-gradient(circle at top right, #fff5f5 0%, #f8f9fa 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.delete-card {
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header-custom-del {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.warning-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.input-group-custom-del {
    background: #f1f3f5;
    border-radius: 15px;
    padding: 5px 15px;
    border: 2px solid transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.input-group-custom-del:focus-within {
    border-color: #ff6a00;
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.1);
}

.input-group-custom-del input {
    border: none;
    background: transparent;
    padding: 12px;
    box-shadow: none !important;
    width: 100%;
    outline: none;
}

.btn-delete-confirm {
    background: #212529;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.4s;
    cursor: pointer;
}

.btn-delete-confirm:hover {
    background: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.btn-cancel-custom {
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-cancel-custom:hover {
    background: #f8f9fa;
    color: #333;
}

/* ==========================================
   5. FORGOT PASSWORD / RESET OTP PAGE STYLES
   ========================================== */
.verify-card-premium {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f4f8;
    position: relative;
    overflow: hidden;
}

.icon-section {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0061f2, #6900f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0061f2;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.verify-title { font-weight: 800; color: #1a202c; margin-bottom: 10px; font-size: 28px; }
.verify-subtitle { color: #718096; font-size: 15px; margin-bottom: 30px; }

.otp-label { font-weight: 700; color: #4a5568; font-size: 14px; margin-bottom: 8px; display: block; }

.verify-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #0061f2, #6900f2);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 97, 242, 0.2);
}

.verify-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 97, 242, 0.3);
}

.verify-footer { margin-top: 25px; border-top: 1px solid #edf2f7; padding-top: 20px; }
.home-link { color: #718096; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.2s; }
.home-link:hover { color: #0061f2; }

/* ==========================================
   6. PASSWORD RESET SENT PAGE STYLES
   ========================================== */
.sent-card-premium {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.top-bar-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.icon-wrapper-sent {
    width: 100px;
    height: 100px;
    background: #f0fff4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px dashed #27ae60;
    animation: float 3s ease-in-out infinite;
}

.icon-wrapper-sent i {
    font-size: 40px;
    color: #27ae60;
    animation: pulse 2s infinite;
}

.info-box-blue {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.btn-green-sent {
    background: #27ae60;
    color: white;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
    display: block;
}

.btn-green-sent:hover {
    background: #219150;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.3);
    color: white;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================
   7. PASSWORD RESET CONFIRM PAGE STYLES
   ========================================== */
.reset-card-premium {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.bg-blob-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(39, 174, 96, 0.03);
    border-radius: 50%;
}

.icon-pulse-wrapper {
    width: 85px;
    height: 85px;
    background: #fff9db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #fdf2b3;
    animation: pulseIcon 2s infinite;
}

.btn-update-password {
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.25);
}

.btn-update-password:hover {
    background: #219150;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.35);
}

/* Crispy Forms Customization within Reset Page */
.custom-form-wrapper .form-control {
    border-radius: 12px;
    padding: 14px 18px;
    border: 2px solid #edf2f7;
    background: #f8fafc;
    font-size: 15px;
    transition: 0.3s;
}

.custom-form-wrapper .form-control:focus {
    border-color: #27ae60;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    outline: none;
}

.custom-form-wrapper label {
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Animations */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(241, 196, 15, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

/* ==========================================
   8. SET NEW PASSWORD (RESET) PAGE STYLES
   ========================================== */
.password-reset-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #f1f5f9;
    animation: fadeInUp 0.7s ease-out;
}

.header-animation {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
}

.icon-wrapper-reset {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ring-animation {
    position: absolute;
    top:0; left:0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #10b981;
    opacity: 0.2;
    animation: pulseRing 2s infinite;
    z-index: 1;
}

.strength-meter {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: 0.4s;
}

.submit-premium-btn {
    width: 100%;
    background: #1e293b;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.submit-premium-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   9. OTP & ORDER VERIFICATION PAGE STYLES
   ========================================== */
:root { --verify-primary: #2196f3; --verify-dark: #1e293b; }

.verify-card-premium {
    background: #ffffff; padding: 45px 40px; border-radius: 35px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.08); text-align: center;
    border: 1px solid #f1f5f9; animation: slideInUp 0.7s ease-out;
}

.icon-circle-blue {
    width: 85px; height: 85px; background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--verify-primary); font-size: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
}

.premium-input-box {
    width: 100%; height: 65px; padding: 10px; font-size: 28px; letter-spacing: 10px;
    text-align: center; border: 2px solid #edf2f7; border-radius: 20px;
    background: #f8fafc; font-weight: 800; transition: 0.3s;
}

.premium-input-box:focus { border-color: var(--verify-primary); background: #fff; outline: none; }

.verify-submit-btn {
    width: 100%; background: var(--verify-dark); color: white; padding: 20px;
    border: none; border-radius: 20px; font-size: 16px; font-weight: 800;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 15px; transition: 0.4s;
}

.verify-submit-btn:hover { background: #000; transform: translateY(-3px); }

.resend-link { color: var(--verify-primary); font-weight: 700; text-decoration: none; }

@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }