@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* body{
    background-image: url(../images/bg-2-01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
} */

.login_desk{
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.713);
    position: relative;
    overflow: hidden;
    /* width: 768px; */
    max-width: 100%;
    min-height: 500px;
}

.login_desk p{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin: 20px 0;
}

.login_desk span{
    font-size: 12px;
}

.login_desk a{
    color: #333;
    font-size: 13px;
    text-decoration: none;
    margin: 15px 0 10px;
}

.login_desk button{
    background-color: #4094fc;
    color: #fff;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

.login_desk button.hidden{
    background-color: transparent;
    border-color: #fff;
}

.login_desk form{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    height: 100%;
}
.login_desk form h1{
    font-size: 1.8rem;
}
.login_desk input{
    background-color: #eee;
    border: none;
    margin: 8px 0;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
    outline: none;
}
.form_work{
    width: 100%;
}
.password_eye{
    position: relative;
}
.password_eye i {
    float: right;
    position: absolute;
    margin-top: 7%;
    margin-left: -10%;
    /* margin-right: 20%; */
}
.phone_eye{
    position: relative;
}
.phone_eye i {
    float: right;
    position: absolute;
    margin-top: 10%;
    margin-left: -10%;
    /* margin-right: 20%; */
}
.form-container{
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.log_in{
    left: 0;
    width: 50%;
    z-index: 2;
}

.login_desk.active .log_in{
    transform: translateX(100%);
}
/* otp */
.login-setup-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#verify-otp3 button,#sign-in3 button{
    width: 100%;
}
  .input-edit {
    border: none !important;
    border-bottom: 2px solid #ccc !important;
    opacity: 0.8;
  }
  input.input-edit:focus {
    box-shadow: none;
    outline: 0;
  }
  .request-otp {
    margin-top: 40px;
    font-size: 14px;
  }
  .request-otp:focus {
    box-shadow: none;
  }
  .fa-chevron-left {
    cursor: pointer;
  }
  .resend-otp{
    margin-top:6%;
    cursor:pointer;
    text-decoration: underline;
    color: #4094fc !important;
  }  
  .login-label h6,.form_check label, .form_check h6{
    font-size: 14px;
    color: #000;
  }
  .form_check{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
  }
  .form_check input{
width: 20px;
  }
  .check_box_main{
    display: flex;
    width: 100%;
    gap: 5px;
  }
  .form_work1{
    width: 300px;
  }
  .form_work1 input ,  .form_work1 select{
    width:100%;
  }
/* otp end */
.sign-up{
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login_desk.active .sign-up{
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: move 0.6s;
}

@keyframes move{
    0%, 49.99%{
        opacity: 0;
        z-index: 1;
    }
    50%, 100%{
        opacity: 1;
        z-index: 5;
    }
}

.social-icons{
    margin: 20px 0;
}

.social-icons a{
    border: 1px solid #ccc;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    width: 40px;
    height: 40px;
}
.social-icons a:hover{
    border: 1px solid #92c3ff;
    background-color: #92c3ff;
    color: #fff;
}
.toggle-container{
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 150px 0 0 100px;
    z-index: 1000;
}

.login_desk.active .toggle-container{
    transform: translateX(-100%);
    border-radius: 0 150px 100px 0;
}

.toggle{
    height: 100%;
    background: linear-gradient(45deg, #92c3ff, #4094fc);
    background-image: url(../images/upper.png);
    background-repeat: no-repeat;
    background-size:cover ;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.login_desk.active .toggle{
    transform: translateX(50%);
}

.toggle-panel{
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-left{
    transform: translateX(-200%);
}

.login_desk.active .toggle-left{
    transform: translateX(0);
}

.toggle-right{
    right: 0;
    transform: translateX(0);
}

.login_desk.active .toggle-right{
    transform: translateX(200%);
}

.logplane_1 {
    height: 90px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
  }
  .logplane_2 {
    height: 90px;
    position: absolute;
    bottom: 60%;
    left: 0;
    z-index: 9999;
  }
  .logplane_3 {
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }

/* phone form */
.phone_login {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-image: url(../images/bg-2-01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.login_main {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #240046;
    max-height: 550px;
    width: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: rgba(59, 0, 130, 0.442) 0px 30px 90px;
}
.logged_in{
    height: 470px;
    width: 100%;
}
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
}

/*checkbox to switch from sign up to login*/

#chk {
    display: none;
}

/*Login*/

.login {
    position: relative;
    width: 100%;
    height: 100%;
}

.login label {
    margin: 5% 0 5%;
}

label {
    color: #fff;
    font-size: 2rem;
    justify-content: center;
    display: flex;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.input {
    width: 100%;
    height: 40px;
    font-size: 1rem;
    background: #e0dede;
    padding: 10px;
    margin-top: 15px;
    border: none;
    outline: none;
    border-radius: 4px;
}

/*Register*/

.register {
    background: #eee;
    border-radius: 60% / 10%;
    transition: .5s ease-in-out;
}

.register label {
    color: #573b8a;
    transform: scale(.6);
}

#chk:checked ~ .register {
    transform: translateY(-80%);
}

#chk:checked ~ .register label {
    transform: scale(1);
}

#chk:checked ~ .login label {
    transform: scale(.6);
}   

/*Button*/

.form button {
    width: 70%;
    height: 40px;
    margin: 15px auto 10%;
    color: #fff;
    background: #573b8a;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s ease-in;
}

.form button:hover {
    background-color: #6d44b8;
}



@media screen and (max-width:767px) {
    .form_work1 {
        width: 300px;
    }
    .phone_btn{
        margin: 10px 0px !important;
        width: 50% !important;
    }
    .form_check {
        gap: 0px;
    }
    .check_box_main {
        justify-content: center;
    }
}
@media screen and (max-width:359px){
    .login_main {
        height: 450px;
    }
    label {
        font-size: 1.8rem;
    }
    .phone_login{
    padding-top: 10%;
    }
    .form {
        justify-content: space-between;
    }
    .logged_in {
        height: 380px;
        width: 100%;
    }
    .form_work1 {
        width: 300px;
    }
/*    .login_desk {
        display: none;
    }*/
    .phone_login {
        width: 100%;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #e8e8e8; */
    }
}

@media (min-width:360px) and (max-width:540px){
/*    .login_desk {
        display: none;
    }*/
    .phone_login {
        width: 100%;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #e8e8e8; */
    }
}

@media (min-width:541px) and (max-width:767px){
/*    .login_desk {
        display: none;
    }*/
    .phone_login {
        width: 100%;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #e8e8e8; */
    }
}

@media (min-width:768px) and (max-width:992px){
    .login_desk {
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
        position: relative;
        overflow: hidden;
        width: 700px;
        max-width: 100%;
        min-height: 430px;
    }
    .login_desk form {
        padding: 0 20px;
    }
}

@media (min-width:993px) and (max-width:1025px){
    .login_desk {
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
        position: relative;
        overflow: hidden;
        width: 710px;
        max-width: 100%;
        min-height: 430px;
    }
}

@media (min-width:1024px) and (max-width:1280px){
    .login_desk {
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
        position: relative;
        overflow: hidden;
        width: 768px;
        max-width: 100%;
        min-height: 440px;
    }
}

@media (min-width:1281px) and (max-width:1366px) {
    .login_desk {
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
        position: relative;
        overflow: hidden;
        width: 800px;
        max-width: 100%;
        min-height: 500px !important;
    }
}

 
