/* @import url("https://use.typekit.net/ulx2jma.css"); */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #d3a243;
    /* --secondary-color--: #122b31;   */
    --secondary-color--: #192a24;  
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    /* font-family: "source-sans-pro", sans-serif; */
    font-family: "Urbanist", sans-serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin-bottom: 0;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.login_page{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    /* background: url(../images/factory-against-sky.jpg) no-repeat;
    background-size: cover; */
    /* background-position: bottom; */
    /* filter: blur(1px);
    -webkit-filter: blur(1px); */
    position: relative;
    padding-left: 10px;
    /* padding-right: 10px; */
    background: #001037;
    /* gap: 10px; */
}

.login_page_gradient{
    width: 55%;
    /* height: calc(100vh - 20px); */
    height: calc(100vh - 0px);
    /* background: linear-gradient(#8a6376, #003f83);
    background: radial-gradient(#8a6376, #003f83); */
    /* border-radius: 20px; */
    overflow: hidden;
   position: relative;
   display: flex;
   align-items: end;
   justify-content: center;
   z-index: 1;
    position: sticky;
    top: 0;
}

.login_page_gradient .logo{
    /* width: 350px; */
    width: 430px;
    margin-bottom: 10%;
}
.mb-5 {
    margin-bottom: 20px;
}

.login_page_gradient .logo p{
    font-size: 22px;
    color: #659cc7;
    text-align: center;
    font-weight: 600;
}

.login_page_gradient::before{
    content: '';
    width: 1200px;
    /* width: 800px; */
    /* height: 800px; */
    height: 1200px;
    position: absolute;
    right: 0;
    top: 0;
    /* background: radial-gradient(circle at 100%, #8a6376 50%, #001037 75%); */
    /* background: radial-gradient(circle at 100%, #8a6376 0%, #080b33 75%); */
    background: radial-gradient(#277cbd6e  0%, #001037 60%);
    transform: translate(40%, -35%);
    aspect-ratio: 1/1;
    z-index: -1;
}

.login_page_gradient.bg_img::before{
   background: radial-gradient(#0e3767 0%, transparent 60%); 
}

.login_page_gradient.bg_img::after{
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    height: 100%;
    background: url(../images/login_bg_3.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    opacity: 0.3;
}

.sign_up_page{
    align-items: start;
    /* align-items: start;
    padding: 120px 20px;
    height: auto;
    justify-content: center; */
    overflow: auto;
}

.login_page::before{
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: url(../images/factory-against-sky_123.jpg) no-repeat; */
    background-size: cover;
    /* background-position: bottom; */
    /* filter: blur(2px);
    -webkit-filter: blur(2px); */
    z-index: -1;
}

.login_form{
    width: 100%;
    max-width: 45%;
    padding: 20px;
    /* backdrop-filter: blur(5px); */
    /* background-color: rgba(255, 255, 255, 0); */
    /* background-color: rgba(255, 255, 255, 0.21); */
    background-color: #fff;
    /* border-radius: 20px; */
    border-radius: 0px 0 0 0px;
    /* padding: 20px 40px; */
    padding: 25px 40px;
    /* padding: 20px 40px; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease;
    /* height: calc(100vh - 20px); */
    height: calc(100vh - 0px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.login_form_inside{
    width: 100%;
    max-width: 450px;
}

.heading {
    margin-bottom: 60px !important;
}

.heading h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 5px;
}

.heading p{
    font-size: 18px;
    text-align: center;
    color: #8c8c8c;
}

.login_form form label{
    font-size: 18px;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
}

.login_form form input, .login_form form textarea{
    width: 100%;
    padding: 15px 10px;
    /* background: #fff; */
    /* background: #eee; */
    border-radius: 10px;
    border: 1px solid #aeaeae;
    outline: none;
    font-size: 14px;
}

.mb_15{
    margin-bottom: 12px;
}

.sub_btn{
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    /* background: #277cbd; */
    background: #ff9916;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: 0.8s;
}
.sub_btn:hover{
    background: #e78301;
    color: #fff;

}

.text-center{
    text-align: center;
}

.password_input{
    position: relative;
}

.password_input input{
    padding-right: 30px;
}

.password_input i{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #b6b6b6;
    cursor: pointer;
    z-index: 2;
}

p.new_account, p.new_account a{
    font-size: 14px;
    color: #000;
}

p.new_account a{
    /* color: #217739; */
    font-weight: 800;
}

.text-left{
    text-align: right;
}

.mt-5{
    margin-top: 5px;
}

.header{
   flex: 1;
   width: 100%;
}

header{
    /* position: fixed;
    left: 0; */
    width: 100%;
    /* top: 0; */
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    z-index: 99;
    flex: 1;
}

header .logo{
    /* width: 250px; */
    width: 180px;
}

.checkbox_input{
    display: flex !important;
    gap: 5px;
}

.checkbox_input input{
    width: auto !important;
}

.d_flex{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    /* align-items: center; */
    flex-wrap: wrap;
}

.copy_right_flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex: 1;
    align-items: end;
}

.copy_right{
    text-align: center;
    /* margin-top: 30px; */
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.copy_right_p{
    display: flex;
    gap: 10px;
}

.copy_right_p a{
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.sign_up_form{
    /* max-width: 1100px;
    height: calc(100vh - 240px);
    overflow: auto;
    scrollbar-width: none;
    scrollbar-color: #217739 #ffffff; */
    height: auto;
    max-width: 65%;
}

/* width */
.sign_up_form::-webkit-scrollbar {
    width: 0;
    border-radius: 20px;
}
  
/* Track */
.sign_up_form::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px; 
}
   
/* Handle */
.sign_up_form::-webkit-scrollbar-thumb {
    background: #217739; 
    border-radius: 20px;
}

.checkbox_input{
    font-size: 16px !important;
}

.card-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card-radio {
    /* flex: 1; */
    /* min-width: 180px; */
}

.card-radio input[type="radio"] {
    display: none;
}

.card-radio label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    /* border-radius: var(--border-radius); */
    padding: 5px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    /* height: 100%; */
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.card-radio label::before {
    /* content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-light);
    top: -15px;
    right: -15px;
    transition: var(--transition);
    z-index: 0;
    opacity: 0; */
}

.card-radio label .price {
    font-size: 18px;
    font-weight: 700;
    /* margin: 8px 0; */
    /* color: var(--dark); */
    padding-left: 20px;
}

.card-radio label .description {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 6px;
    font-weight: 400;
}

.card-radio input[type="radio"]:checked + label {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px);
}

/* .card-radio input[type="radio"]:checked + label::before {
    transform: scale(12);
    opacity: 0.1;
} */
        
.card-radio input[type="radio"]:checked + label::after {
    content: "✓";
    position: absolute;
    top: 5px;
    left: 5px;
    background: #0e3767;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}


@media(max-width: 1300px){
    .heading {
        margin-bottom: 20px !important;
    }
    .mt-5 {
        margin-top: 2.5rem !important;
    }
}
@media(max-width: 1199px){
    .login_form{
        max-width: 55%;
    }
    .login_page_gradient {
        width: 45%;
    }
}

@media(max-width: 991px){
    .login_form{
        max-width: 65%;
        padding: 20px 20px;
    }
    .login_page_gradient {
        width: 35%;
    }
    .login_form_inside {
        width: 100%;
    }
}

@media(max-width: 768px){
    .login_page{
        justify-content: center;
    }
    .login_form{
        max-width: calc(100% - 60px);
        height: calc(100vh - 60px);
    }
    .login_page_gradient {
        display: none;
    }
    .copy_right_flex{
        flex-direction: column;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }
    .heading {
        margin-bottom: 20px !important;
    }
}

@media(max-width: 600px){
    .login_form{
        padding: 20px 20px;
        max-width: calc(100% - 20px);
        height: calc(100vh - 20px);
    }
    .heading h2 {
        font-size: 28px
    }
}
@media(max-width: 425px){
    .login_form{
        padding:  20px 20px;
        max-width: calc(100% - 10px);
        height: calc(100vh - 10px);
    }
    .heading h2 {
        font-size: 28px
    }
}


.otp_modal .modal-content{
    border-radius: 20px;
    padding: 20px 20px;
}

.otp_modal .modal-header{
    border: none;
    text-align: center;
    position: relative;
}

.otp_modal .modal-header img{
    width: 140px;
    margin: 0 auto;
}

.otp_modal .modal-header .btn-close{
    position: absolute;
    opacity: 1;
    right: 20px;
    top: 20px;
}

.otp_modal .otp_heading h3{
    font-size: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.otp_modal .otp_heading h3::before{
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background: #0e3767;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.otp-input-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.otp-input {
    width: 100%;
    /* height: 40px; */
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border: 1px solid #dedede;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

.otp-input:focus {
    border-color: #217739;
    outline: none;
    box-shadow: 0 0 5px #217739;
}

.resend_otp{
    display: flex;
    justify-content: end;
    gap: 10px;
}

.resend_otp a, .resend_otp button{
    color: #217739;
    text-decoration: underline !important;
    background: none;
    border: none;
    opacity: 0.6;
}

.resend_otp a.active, .resend_otp button.active{
    opacity: 1;
}

.change_num{
    color: #217739 !important;
    text-decoration: underline !important;
    font-size: 12px;
}

.select2-container .select2-selection--single{
    height: 53px !important;
    border-radius: 10px;
    border-color: #aeaeae;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 50px !important;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 51px !important;
}