:root{
    --color-primary:#1672DF;
    --bg-seconday:#d2e3fe;
    --light-gray:#E0E3E5;
}
body{
    background: #f7f9fb;
}
.header{
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    z-index: 9999;
}
.btn-custom{
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 8px 20px;
    color: white;
    transition: all .3s;
}
.btn-custom:hover{
    background-color: transparent;
    color: var(--color-primary);
}
.side{
    /* height:92vh; */
    height: auto;
   background: url('../images/bg-image.png') no-repeat;
   background-size: cover;
   padding:30px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.side-content{
    width: 80%;
}
.side-card-sm{
    background: var(--bg-seconday);
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    border-radius: 12px;
    gap: 5px;
}
.side-text p{
    color: white;
    width: 70%;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0px;
}
.side-text h2{
    color: white;
    font-size: 48px;
    font-weight: 700;
    width: 70%;
}
.side-card-sm p{
    font-size: 18px;
    color: var(--color-primary);
    padding-left: 10px;
    margin: 0px !important;
}
.form-content{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0px;
}
.form-section{
    width: 80%;
}
.step-span1,.step-span2,.step-span3{
    width: 100%;
    height: 5px;
    background-color: var(--light-gray);
    border-radius: 100px;
    position: relative;
    transition: all 0.3s ease;
}
.step-span1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 100px;
    transition: width 0.3s ease;
    animation: expandWidth .5s ease-in-out forwards;
}
.step-span2::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 100px;
    transition: width 0.3s ease;
    animation: expandWidth2 .5s ease-in-out forwards;
}
.step-span3::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 100px;
    transition: width 0.3s ease;
    animation: expandWidth3 .5s ease-in-out forwards;
}
/* Define the animation */
@keyframes expandWidth {
    0% {
        width: 0;
    }
 
    100% {
        width: 2%;
    }
}
@keyframes expandWidth2 {
    0% {
        width: 0;
    }
 
    100% {
        width: 50%;
    }
}
@keyframes expandWidth3 {
    0% {
        width: 0;
    }
 
    100% {
        width: 100%;
    }
}
.step-info span{
    color: var(--color-primary);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}
.step-info p{
    font-size: 18px;
}
.form-heading{
    padding: 30px 0px;
}
.form-heading h4{
    color: #333333E5;
    font-weight: 600;
    font-size:32px;
}
.form-heading p{
    color: #333333E5;
    font-weight: 400;
    font-size:18px;
}
.form{
    padding: 30px 50px;
    background: white;
    border-radius: 12px;
}
.input-div{
    margin-top: 30px;
}
.input-label{
    font-size: 18px;
    margin-bottom: 8px;
}
.input{
    width: 100%;
    padding: 18px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    padding-left: 50px;
}
.input-error{
    border-color: red;  
}
.input:focus{
    border-color: var(--color-primary);
    outline: var(--color-primary);
}
.input-icon{
    display: flex;
    position: relative;
    flex-direction: column;
}
.input-icon-img{
    position: absolute;
    top: 26px;
    left: 20px;
}
.input-check{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.check-error{
    outline: 2px solid red;
}
.btn button{
    width: 100%;
    padding: 20px
}
.form-end span{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
/* Target the Select2 selection box */
.select2-container .select2-selection--single {
    width: 100% !important;
    height: 60px !important;
    padding: 12px 16px 12px 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
}
 
/* Adjust the text inside to remove default styling */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    line-height: normal !important;
    color: #333;
}
 
/* Fix the arrow position because of the increased height */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 10px !important;
}
 
/* Optional: Focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #66afe9 !important;
    outline: 0;
}
.password-icon{
    cursor: pointer;
    position: absolute;
        top: 26px;
        right: 20px;
}
/* ======================= Payment ================== */
/* Container styling */
.payment-option {
    display: flex;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}
 
/* Hover effect */
.payment-option:hover {
    border-color: #0d6efd7a;
}
 
/* Selected state - Active border */
.payment-option.active {
    border-color: #0d6efd;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.05);
}
 
/* Icon Box styling */
.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
}
 
.bg-primary-light {
    background-color: #f0f7ff;
}
 
/* Make the radio button bigger to match the design */
.custom-radio {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.payment-content{
    background-color: white;
}
.payment-content .form{
    padding: 0px;
}
/* ========= payment 2 ============ */
/* Light primary background for the badge and info box */
.bg-primary-light {
    background-color: #eef5ff !important;
}
 
/* Specific background for the info section in the card */
.bg-light-blue {
    background-color: #f8fbff;
}
 
/* Card styling adjustments */
.card {
    background: #fff;
    border: 1px solid #f0f0f0 !important;
}
 
/* Button hover and shadow */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
 
.btn-primary:hover {
    background-color:var(--color-primary);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}
 
.copy-btn {
    text-decoration: none;
    font-size: 1.1rem;
}
.side-payment-card{
    background-color: rgba(255, 255, 255, 0.115) !important;
    padding: 20px !important;
    margin: 7px 0px !important;
}
.security-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.side-card-sm img{
    width: 24px;
}
.active .method-icon{
    color: var(--color-primary);
}
/* ====== blink */