/* ================= SIGNUP SECTION ================= */

.signup-section {
    background: #f5f6f8;
    /* padding: 20px 0; */
}

.left-content {
    padding-left: 8%;
    margin-top: -200px;
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
    .left-content {
        margin-top: -80px;        /* remove negative margin on mobile */
        padding-left: 20px;   /* optional: better spacing for small screens */
        padding-right: 20px;
    }
}
.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.sub-text {
    font-size: 18px;
    color: #475569;
    max-width: 500px;
}

.hero-illustration img {
    max-width: 420px;
}

/* FORM CARD */

.signup-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Inputs */

.custom-input {
    height: 50px;
    border-radius: 8px;
    padding-right: 40px;
    border: 1px solid #ced4da;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #111827;
}

/* Valid Icon */

.valid-icon {
    position: absolute;
    right: 12px;
    top: 16px;
    color: #22c55e;
    display: none;
}

/* Toggle Password */

.toggle-password {
    position: absolute;
    right: 12px;
    top: 16px;
    cursor: pointer;
    color: #6c757d;
}

/* Password Strength */

.password-strength {
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    background: red;
    transition: 0.3s;
}

.strength-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

/* Success Box */

.success-box {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

/* Buttons */

.signup-btn {
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.social-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
}

.social-btn:hover {
    background: #e2e6ea;
}

/* Responsive */

@media (max-width: 991px) {
    .main-heading {
        font-size: 36px;
    }

    .left-content {
        text-align: center;
        padding-left: 0;
    }

    .hero-illustration {
        display: none;
    }

    .signup-section .row {
        min-height: auto;
        padding: 60px 0;
    }
}
/* ================= PASSWORD GUIDELINES ================= */

.password-info {
    font-size: 13px;
    color: #6b7280;
}

.password-info ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.password-info li {
    margin-bottom: 4px;
}

/* Improve spacing */

.password-strength {
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Make sure card doesn't cut content */

.signup-card {
    height: auto;
}
/* Strength Bar */
.password-strength {
    height: 6px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: 0.3s ease;
}

/* Hide guidelines by default */
.password-info {
    display: none;
    background: #f3f4f6;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}

/* Eye icon positioning */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


/* store setup steps  */


  body { background-color: #f0f2f4; font-family: 'Segoe UI', Arial, sans-serif; color: #333; }
        .main-container { max-width: 760px; margin: 40px auto; }
        
        /* Logo and Header */
        .logo-box { margin-bottom: 25px; }
        .logo-text { font-size: 1.6rem; font-weight: 700; color: #000; line-height: 1; }
        .logo-sub { font-size: 0.75rem; color: #666; display: block; }
        h1 { font-size: 2rem; font-weight: 600; color: #00234b; margin-bottom: 30px; }

        /* Pricing Card */
        .payment-card { background: white; border-radius: 8px; padding: 40px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        
        /* Plan Selection */
        .plan-option { border: 1px solid #eef0f2; border-radius: 8px; padding: 20px; margin-bottom: 15px; position: relative; cursor: pointer; transition: 0.2s; }
        .plan-option.selected { border-color: #2c5af0; background-color: #f9fbff; }
        .plan-radio { width: 20px; height: 20px; margin-right: 15px; cursor: pointer; }
        
        .plan-details { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .plan-title { font-weight: 600; font-size: 1rem; color: #00234b; }
        .plan-price-small { color: #5a6d80; font-size: 0.9rem; }
        
        .price-display { text-align: right; }
        .price-main { font-size: 2.2rem; font-weight: 700; color: #00234b; line-height: 1; }
        .price-term { font-size: 0.9rem; color: #5a6d80; display: block; margin-top: 5px; }
        .starter-badge { color: #21ba45; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block; }

        /* Form Styling */
        .section-title { font-size: 1.25rem; font-weight: 600; margin-top: 30px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
        .helper-text { font-size: 0.9rem; color: #5a6d80; margin-bottom: 20px; }
        
        .input-group-custom { margin-bottom: 15px; }
        .form-control-custom { border: 1px solid #c9d2db; border-radius: 4px; padding: 12px 15px; background: #fcfdfe; width: 100%; outline: none; transition: 0.2s; }
        .form-control-custom:focus { border-color: #2c5af0; box-shadow: 0 0 0 1px #2c5af0; }

        .btn-pay { background-color: #2c5af0; color: white; width: 100%; padding: 14px; border-radius: 6px; font-weight: 600; border: none; font-size: 1.1rem; margin-top: 20px; }
        .btn-pay:hover { background-color: #1e44c1; }
        
        .footer-text { font-size: 0.8rem; color: #7d8fa3; text-align: center; margin-top: 15px; }
        .coupon-link, .country-link { color: #2c5af0; text-decoration: none; font-size: 0.9rem; cursor: pointer; }
        
        
        /* Main Container Layout */
        .setup-container { max-width: 100%; margin: 60px auto; display: flex; min-height: 550px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        
        /* Left Sidebar - Fixed as per Arrow 1 */
        .sidebar { width: 32%; padding: 45px 35px; border-right: 1px solid #eef0f2; background: #fff; }
        .logo-box { margin-bottom: 30px; }
        .logo-text { font-size: 1.6rem; font-weight: 700; color: #000; line-height: 1; }
        .logo-sub { font-size: 0.75rem; color: #666; display: block; }
        
        .step-info { font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; color: #000; margin-top: 25px; }
        .step-indicator-bar { width: 100%; height: 3px; background: #eee; margin-bottom: 20px; position: relative; }
        .step-indicator-bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 25%; background: #21ba45; transition: width 0.3s ease; }
        
        /* Sidebar Dynamic Progress Colors */
        .step-info span { color: #21ba45; font-weight: bold; }
        .sidebar-desc { font-size: 0.9rem; color: #5a6d80; margin-top: 15px; line-height: 1.5; }

        /* Main Content Area */
        .form-content { width: 68%; padding: 50px 70px; display: flex; flex-direction: column; }
        .step-panel { display: none; }
        .step-panel.active { display: block; animation: fadeIn 0.3s ease-in; }
        
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        h2 { font-weight: 600; font-size: 1.75rem; margin-bottom: 25px; color: #00234b; }
        .instruction-text { color: #5a6d80; font-size: 0.95rem; margin-bottom: 20px; }

        /* Custom Styled Inputs - Fixed as per Arrow 3 */
        .input-wrapper { position: relative; margin-bottom: 20px; border: 1px solid #c9d2db; border-radius: 6px; padding: 6px 15px; background: #fff; transition: all 0.2s; }
        .input-wrapper:focus-within { border-color: #2c5af0; box-shadow: 0 0 0 1px #2c5af0; }
        
        .input-label { display: block; font-size: 0.7rem; color: #7d8fa3; margin-bottom: 0px; text-transform: none; }
        .custom-input { border: none; width: 100%; font-size: 1rem; color: #00234b; outline: none; padding: 2px 0; background: transparent; }
        
        /* Select Dropdown Arrow - Fixed as per Arrow 2 */
        .custom-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237d8fa3' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px !important; }

        .check-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #21ba45; font-size: 1.1rem; }

        /* Buttons */
        .button-group { display: flex; gap: 12px; margin-top: 30px; }
        .btn-next { background-color: #2c5af0; color: white; padding: 12px 50px; font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: var(--transition); }
        .btn-next:hover { background-color: var(--gold);
    color: #000 !important;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: var(--transition);}
        .btn-back { background: white; color: #5a6d80; padding: 12px 25px; border: 1px solid #c9d2db; border-radius: 6px; font-weight: 600; display: none; }
        .btn-back:hover { background: #cdd9ff; color: #2c5af0; padding: 12px 25px; border: 1px solid #c9d2db; border-radius: 30px; font-weight: 600; display: none; }

         .str-btn{
            border-radius: 30px;
         }