/* ============================================================
   SHOPPI USER SIGNUP - MODERN PREMIUM REDESIGN
   ============================================================ */

:root {
    --signup-primary: #2d324c;
    --signup-secondary: #3d4466;
    --signup-accent: #6c5ce7;
    --signup-accent-light: #a855f7;
    --signup-gradient: linear-gradient(135deg, #2d324c 0%, #1b1e2e 100%);
    --signup-accent-gradient: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
    --field-bg: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --radius-lg: 32px;
    --radius-md: 16px;
}

body {
    background-color: #f1f5f9;
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.header_login {
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header_login .navbar-brand img {
    height: 40px;
}

/* Split Layout */
#signup_content {
    min-height: 100vh;
}

.bg_login_img {
    background: var(--signup-gradient);
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 80px 40px;
}

.bg_login_img::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.login_bg_content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
}

.logo_title img {
    max-width: 280px;
    /* Fixing the oversized "Pay" branding */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.subscription_detail .list-group-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.subscription_detail .list-group-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.btn-primary.font_style {
    background: white;
    color: var(--signup-primary);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary.font_style:hover {
    background: var(--signup-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
}

/* Form Container */
.col-md-6.d-flex.align-items-center {
    background: #f8fafc;
}

.signup-card-container {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
}

h1.text-primary {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--signup-primary) !important;
}

.border-left-yellow {
    border-left: 6px solid #ffd700;
}

/* Tabs */
.login_tab {
    background: #edf2f7;
    padding: 6px;
    border-radius: 18px;
    display: inline-flex;
    width: 100%;
}

.login_tab .nav-pills .nav-item {
    flex: 1;
}

.login_tab .nav-pills .nav-link {
    border-radius: 14px;
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px;
    transition: all 0.3s;
    text-align: center;
    border: none;
    background: transparent;
}

.login_tab .nav-pills .nav-link.active {
    background: white;
    color: var(--signup-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Form Styles */
.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--signup-primary);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 14px;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    background: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--signup-accent);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    outline: none;
}

#recaptcha {
    margin: 20px 0;
}

.btn-primary[type="submit"] {
    background: var(--signup-accent-gradient);
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 10px 15px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.btn-primary[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(108, 92, 231, 0.4);
}

.text-red {
    color: #ff4757 !important;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
    .bg_login_img {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .login_bg_content {
        text-align: center;
    }

    .subscription_detail {
        padding-top: 20px !important;
    }

    .subscription_detail .list-group-item {
        justify-content: center;
    }

    .signup-card-container {
        margin: 20px auto;
    }
}