/* body {
    font-family: Arial, sans-serif;
    background-color: #f0f4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}  */

.container1 {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 800px;
}

.stepforPtag {
    color: #0a1f44;
}

.sidebar {
    background: #4b5fd7;
    padding: 30px 20px;
    width: 280px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}


.active {
    background: white;
    color: #4b5fd7;
}

.step-text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.sub-text {
    font-size: 12px;
    opacity: 0.8;
}

.form-container {
    padding: 30px;
    flex-grow: 1;
}



.paymentformlable {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: black;
}

.next-btn {
    background: #0a1f44;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

.next-btn:hover {
    background: #334e94;
}

.step-container.active {
    background: white;
    color: #4b5fd7;
    padding: 5px;
    border-radius: 5px;
}


/* 21032025 */

.container1 {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 800px;
}

.sidebar {
    background: #4b5fd7;
    padding: 30px 20px;
    width: 280px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.active {
    background: white;
    color: #4b5fd7;
}

.form-container {
    padding: 30px;
    flex-grow: 1;
}

input {
    /* width: 100%; */
    padding: 10px;
    /* margin: 5px 0 10px; */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.hidden {
    display: none;
}

.non-editable {
    background: #f8f9fa;
    color: #6c757d;
    border: none;
    pointer-events: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
}


.hidden {
    display: none;
}

.non-editable {
    background-color: #f3f3f3;
    border: none;
    cursor: not-allowed;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: black;
}


.back-btn {
    /* background-color: #ccc; */
    background-color: transparent;
    color: black;
    margin-right: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
}

#quantity {
    width: 100px;
    /* Set desired width */
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    appearance: none;
    background-color: #f9f9f9;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }

    .sidebar {
        flex-direction: row;
        justify-content: space-around;
        padding: 10px;
        width: 100%;
        background: #4b5fd7;
    }

    .step-container {
        /* flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center; */
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        text-align: center;
    }

    .step-circle {
        margin-bottom: 5px;
    }

    .form-container {
        padding: 15px;
        width: 100%;
    }

    .close-btn {
        font-size: 28px;
        top: 5px;
        right: 10px;
    }

    input,
    select {
        font-size: 16px;
        padding: 12px;
    }

    .next-btn,
    .back-btn {
        padding: 12px;
        font-size: 18px;
        width: 100%;
    }
}

h2 {
    color: #0a1f44;
}