*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,a,p,strong{
     font-family: "Inter", sans-serif;
}



.loginPage_wrapper {
    /* background: linear-gradient(357deg,rgba(135, 226, 251, 1) 0%, rgba(255, 255, 255, 1) 100%); */
        background: url(../assets/images/bg-gradient.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    height: 100vh;
    overflow: hidden;
        padding: 0px 20px 20px;
}

.loginPage_wrapper header {
    background: transparent;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 20px 0;
}
.loginPage_wrapper header .logo_Wrap img {
    width: 100%;
    max-width: 140px;
}
.login_box_wrap {
        background: linear-gradient(186deg, rgb(128 230 255) -100%, rgb(255 255 255) 35%);
    border-radius: 25px;
    overflow: hidden;
    filter: drop-shadow(0px 2px 4px #00000026);
    padding: 30px 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 550px;
    margin: 0 20px;
        z-index: 9;
}
.login_box_wrap h1 {
    font-size: 32px;
    font-weight: 600;
}

.login_box_wrap p {
    font-size: 16px;
    font-weight: 400;
    color: #00000085;
}

.input_icon_wrap input{
    border: 1px solid #00000020;
    border-radius: 15px;
    min-height: 56px;
}
/* .ring_bg {
    position: absolute;
    bottom: 0;
    top: unset;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    height: 90vh;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}
.cloud_float {
    position: absolute;
    width: 100%;
    object-fit: cover;
    filter: brightness(10);
}
.cloud_float1 {
    bottom: -220px;
    top: unset;
    right: -230px;
    max-width: 1200px;
}
.cloud_float2 {
    bottom: 60px;
    top: unset;
    right: 170px;
    max-width: 1110px;
}
.cloud_float3 {
    bottom: -140px;
    top: unset;
    left: -200px;
    max-width: 1000px;
}
.cloud_float4 {
    bottom: -50px;
    top: unset;
    left: 100px;
    max-width: 1000px;
    opacity: 0.5;
}
.cloud_float5 {
    bottom: 140px;
    top: unset;
    right: 0;
    left: -760px;
    margin: 0 auto;
    max-width: 700px;
}
.cloud_float6 {
    bottom: -180px;
    top: unset;
    left: 0;
    max-width: 1200px;
    right: 0;
    margin: 0 auto;
}
.cloud_float7 {
    bottom: 50px;
    top: unset;
    left: 0px;
    max-width: 750px;
    opacity: 0.5;
} */
.icons_box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.icons_box a {
    font-size: 20px;
    color: #000;
        transition: all .3s ease-in-out;
}
.icons_box a:hover {
    /* background: linear-gradient(20deg, hsla(196, 100%, 84%, 1) 0%, hsla(195, 84%, 48%, 1) 100%); */
    background: linear-gradient(
289deg, hsl(196deg 100% 84% / 43%) -20%, hsla(195, 84%, 48%, 1) 60%);
    transition: all .3s ease-in-out;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider_text {
    font-size: 18px;
    font-weight: bold;
    color: #0000004d;
    position: relative;
    width: 100%;
    display: block;
    margin: 5px 0px;
}
.divider_text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 45%;
    height: 1px;
    background: #00000026;
}
.divider_text::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 45%;
    height: 1px;
    background: #00000026;
}
.signup_btn {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    color: #000;
    border-radius: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    font-size: 17px;
    font-weight: 400;
    margin: 10px 0 15px;
    text-decoration: unset;
    transition: color 0.4s ease-in-out;
    z-index: 1;
}

/* Hover gradient layer */
.signup_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        240deg,
        rgba(53, 211, 255, 1) 0%,
        rgba(0, 165, 255, 1) 50%,
        rgba(108, 132, 255, 1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

/* Hover state */
.signup_btn:hover {
    color: #fff;
}

.signup_btn:hover::after {
    opacity: 1;
}
.login_btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0 10px;
    border: 0;
    text-decoration: unset;
    z-index: 1;
}

/* Base gradient */
.login_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(6deg,
        rgba(84, 84, 84, 1) 0%,
        rgba(10, 10, 10, 1) 100%);
    z-index: -2;
}

/* Hover gradient */
.login_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(240deg,rgba(53, 211, 255, 1) 0%, rgba(0, 165, 255, 1) 50%, rgba(108, 132, 255, 1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.login_btn:hover::after {
    opacity: 1;
}
.welcome_btn {
    background: linear-gradient(20deg, hsla(196, 100%, 84%, 1) 0%, hsla(195, 84%, 48%, 1) 100%);
}
.welcome_btn:hover{
    background: hsla(195, 84%, 48%, 1);
}







.remember_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remember_box .form-check-label {
    font-size: 14px;
    color: #000;
    opacity: 40%;
        user-select: none;
    cursor: pointer;
}

.remember_box #gridCheck {
    height: 18px;
    width: 18px;
    margin-right: 10px;
}
.remember_box  .form-check-input:checked {
    background-color: #0082DF !important;
    border-color: #0082DF !important;
}
.remember_box .forget_link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: unset;
    color: #0082DF;
}
.remember_box .forget_link:hover {
    color: #000;
        text-decoration: underline;
}
.input_icon_wrap input{
    border: 1px solid #00000020;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 400;
    padding: 15px 20px 15px 50px;
    background: #feffff;
}
.forget_pass_Wrap .input_icon_wrap input{
    padding: 15px!important;
}
 .loginInput_wrap input[type="password"] {
    padding: 15px 45px 15px 50px;
}
.input_icon_wrap {
    display: flex;
    align-items: center;
    position: relative;
}
.input_icon_wrap .inp-icon {
    position: absolute;
    color: #000;
    font-size: 20px;
    top: 20px;
    left: 24px;
    opacity: 30%;
}
.loginInput_wrap .toggle-password {
    position: absolute;
    color: #000;
    font-size: 20px;
    top: 20px;
    right: 24px;
    opacity: 30%;
    cursor: pointer;
}
.input_icon_wrap input::placeholder {
    color: #000;
    opacity: 30%;
}
/* forget pass  */
.forget_pass{
    padding: 30px;
}
.forget_pass .login_btn {
    margin: 10px 0px 10px;
}

/* create pass  */
.create_pass .login_box_wrap {
    padding: 30px;
}
.create_pass .loginInput_wrap input[type="password"] {
    padding: 15px 45px 15px 15px;
}
/* reset pass  */
.pass_reset  .login_box_wrap {
    padding: 40px 30px 40px;
}
/* opt css  */
.otp_inp_wrap {
    display: flex;
    gap: 15px;
        JUSTIFY-CONTENT: CENTER;
            margin-top: 30px !important;
}
.otp_inp_wrap input {
   background: #f5f5f5;
    border: 1px solid #0000001c;
    font-size: 40px;
    padding: 10px;
    text-align: center;
    font-weight: 500;
        height: 52px;
    WIDTH: 52PX;
}
.otp_wrap .login_box_wrap {
    padding: 30px;
}
.simple_divider {
    background: #000;
    height: 1px;
    display: block;
    opacity: 20%;
    margin: 20px 0px;
}
.resend_wrap p {
    font-size: 16px;
    color: #000;
    opacity: 40%;
    margin-bottom: 5px;
}

.resend_wrap a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #0082DF;
}
/* signup css  */
.signup_logo {
    width: 100%;
    max-width: 300px;
}
.left_signupbox {
        background: url(../assets/images/signup-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background: linear-gradient(357deg, rgba(135, 226, 251, 1) 0%, rgba(255, 255, 255, 1) 120%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: auto;
}

.signup_wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 30px;
}

.signup_form_Wrap {
        padding: 20px;

}
/* .signCloud {
    right: -150px;
    top: 50px;
    max-width: 600px;
}
.signCloud2 {
    left: -280px;
    top: 30%;
    max-width: 500px;
}

.signCloud3 {
    bottom: 30px;
    right: -170px;
    max-width: 680px;
} */
.copyright_signup a {
    color: #0082DF;
    font-weight: 500;
}
.copyright_signup {
    position: absolute;
    bottom: 10px;
    font-size: 14px;
    text-align: center;
}
.signup_inp_wrap .toggle-password {
    position: absolute;
    color: #000;
    font-size: 20px;
    top: 35%;
    right: 24px;
    opacity: 30%;
    cursor: pointer;
}
.signup_inp_wrap input {
    padding: 15px 20px 15px 20px;
}
.signup_inp_wrap #signupPassword {
    padding: 15px 45px 15px 20px;
}
.signup_form_Wrap h2 {
    font-size: 30px;
    font-weight: 600;
}
/* .sub_heading_divider:after {
    content: "";
    position: absolute;
    top: 11px;
    right: 0;
    background: #0082DF;
    width: 100%;
    max-width: 83%;
    height: 1px;
} */
 .sub_heading_divider .divider_border {
    background: #0082DF;
    width: 100%;
    max-width: 100%;
    height: 1px;
    display: inline-block;
}
.sub_heading_divider {
    color: #0082DF;
    font-size: 15px;
    font-weight: 500;
    margin-top: 30px;
    position: relative;
    display: inline-flex;
    text-wrap: nowrap;
    align-items: center;
    gap: 20px
}
.input_icon_wrap textarea,
.input_icon_wrap select {
    border: 1px solid #00000020;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 400;
    padding: 15px 20px 15px 50px;
   
}
.signup_inp_wrap textarea,
.signup_inp_wrap select {
    padding: 15px 20px 15px 20px;
}
.input_icon_wrap textarea::placeholder{
    color: #000;
    opacity: 30%;
}

.input_icon_wrap select {
 color: #b1b2b2;
}
.input_icon_wrap select:focus {
 color: #000;
}
.signup_inp_wrap .input_icon_wrap input, .signup_inp_wrap .input_icon_wrap textarea {
    font-size: 16px;
}
.input_icon_wrap .iti {
    width: 100%;
}
.signup_inp_wrap .iti__selected-flag {
    height: 40px !important;
    padding: 0 10px;
}
.signup_inp_wrap .iti__flag {
    transform: scale(1.5);
}
.signup_inp_wrap .iti__country-container {
    padding-left: 6px!important;
}
.upload-btn-img {
        position: relative;
        overflow: hidden;
        display: inline-block;
    }

    .signup_inp_wrap .upload-btn-img input[type=file] {
        font-size: 100px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0; 
    }

    .signup_inp_wrap .img-thumbnail {
        opacity: 1;
        transition: opacity .25s ease-in-out;
        -moz-transition: opacity .25s ease-in-out;
        -webkit-transition: opacity .25s ease-in-out;
        cursor: pointer;
        width: 160px; height: 160px; 
        object-fit:cover;
    }

   .signup_inp_wrap .upload-btn-img:hover .img-thumbnail {
        opacity: 0.7;
        cursor: pointer;
    }

   .signup_inp_wrap .upload-btn-img:hover input {
        cursor: pointer;
    }

.login_text {
    color: #000;
    font-size: 15px;
}
.login_text a {
    text-decoration: none;
    color: #0082DF;
    font-weight: 500;
}
/* 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;
}
@media screen and (max-height: 830px) {
  .loginPage_wrapper {
    height: 100%;
}
.loginPage_wrapper.otp_wrap,
.forget_pass_Wrap,
.loginPage_wrapper.create_pass,
.loginPage_wrapper.pass_reset  {
    height: 100vh;
}
}
@media only screen and (max-width: 767px) {
  .loginPage_wrapper header .logo_Wrap img {
    max-width: 100px;
}
.login_box_wrap h1 {
    font-size: 24px;
        MARGIN: 0;
}
.remember_box .forget_link {
    font-size: 12px;
}
.login_box_wrap {
    padding: 20px 20px 20px;
}
.loginPage_wrapper {
    gap: 0px;
}
.divider_text {
           margin: 5px 0px;
        font-size: 14px;
}
.login_btn {
    padding: 10px;
    font-size: 16px;
            MARGIN-TOP: 10PX;
}
.input_icon_wrap input {
    font-size: 16px;
}
.signup_btn {
    padding: 10px;
    font-size: 16px;
}
.otp_inp_wrap input {
    font-size: 30px;
    height: 40px;
    WIDTH: 40PX;
}
.otp_inp_wrap {
    gap: 10px;
}
.resend_wrap a {
    font-size: 16px;
}
.left_signupbox {
    display: none;
}
/* .cloud_float4 {
    bottom: -70px;
    left: -40px;
}
.cloud_float3 {
    bottom: -10px;
}
.cloud_float2 {
    bottom: 70px;
    right: 80px;
}
.cloud_float1 {
    bottom: -70px;
    right: -110px;
}
.cloud_float5 {
    bottom: -80px;
    right: 0;
    left: -70px;
    margin: 0;
}
.cloud_float6 {
    bottom: 30px;
    top: unset;
    left: unset;
    right: -130px;
    margin: 0;
} */
}