.background_size{
    height: 100vh;
    background-image: url("https://images.pexels.com/photos/305070/pexels-photo-305070.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.logo{
    height: 25px;
    width: auto;
    display: flex;
    position: relative;
}

#slide_bg{
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    animation: slidebg 40s linear infinite 0s;
    animation-timing-function: ease-in-out;
}

@keyframes slidebg{
    0% {
        background-image:url('../img/71.jpg');
    }
    20% {
        background-image:url('../img/72.jpg');
    }
    40% {
        background-image:url('../img/73.jpg');
    }
    60% {
        background-image:url('../img/74.jpg');
    }
    80% {
        background-image:url('../img/75.jpg');
    }
    100% {
        background-image:url('../img/uzui1.jpg');
    }
} 

.box{
    height: 500px;
    position: relative;
    overflow: hidden;
 }
 .signup{
    position: absolute;
    bottom: 0;
    Left: 0;
    width: 100%;
    height: 330px;
    padding: 70px 5px;
    transition: 0.5s;
    position: relative;
 }
 .login{
    position: absolute;
    bottom: 0;
    Left: 101%;
    width: 100%;
    height: 430px;
    padding: 0px 5px;
    transition: 0.5s;
    position: relative;
    margin-top: -335px;
 }
 .input-group span{
    color: gray;
}
.input-group .inp{
    width: 100% ;
    padding: 10px 15px;
    border-radius: 100px ;
    border: 1px solid #c6c6c6;
    margin-top: 5px;
}

.input-group .inp::placeholder {
    font-size: 13px;
    letter-spacing: 0px;
}

#currentPass-desc, #newPass-desc, #confirmPass-desc {
    font-size: 12px;
    color: var(--primary-color);
}

.submit-inp{
   background: linear-gradient(30deg,red,blue);
   border: none !important;
   color: white;
   font-weight: bolder;
   font-variant: small-caps;
   font-size: 18px;
}
.toggle-btn{
    -webkit-appearance: none;
    width: 111px ;
    height: 40px;
    border: 1px solid gray;
    position: absolute;
    top: 460px;
    Left: calc(50% - 55px);
    border-radius: 100px;
}
.toggle-btn:before{
    font-size: 14px;
    content: 'Sign up';
    color: var(--white-color);
    position: absolute;
    font-family: 'Poppins', sans-serif;
    top: 0;
    left: 0;
    width: 70%;
    height: 101%;
    border-radius: 100px;
    display: grid;
    place-items: center;
    transition: 0.5s;
    background: var(--text-color);
 }
 .toggle-btn:checked:before{
    content: 'Login';
    left: 30%;
 }
 .toggle-btn:checked + .signup{
    left: -101%;
 }
 .toggle-btn:checked + .signup + .login{
    left: 0%;
 }

 .inputBx .ant-btn {
    font-size: 16px;
    border-radius: 29px;
    border: 1px solid #607d8b;
    transition: 0.25s all;
 }

 .not-have-acc {
    display: flex;
    align-items: center;
    margin-top: 20px;
 }

 .register-here {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
 }

 .inputBx .ant-btn:hover > span {
    color: #fff !important;
 }

.inputBx .ant-btn span {
    margin-top: 0 !important;
}

section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}
section .imgBx{
    position: relative;
    width: 50%;
    height: 100%;
}
section .imgBx:before{
    content: '';
    position: absolute;
    top: 0;
    Left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg,#e91e63,#03a9f4);
    z-index: 1;
    mix-blend-mode: screen;
}
section .imgBx img{
    position: absolute;
    top: 0;
    Left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section .contentBx{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
section .contentBx .formBx{
    width: 50%;
}
section .contentBx .formBx h2{
    color: #607d8b;
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 4px solid #ff4584;
    display: inline-block;
    Letter-spacing: 1px;
}
section .contentBx .formBx .inputBx span{
    font-size: 16px;
    margin-bottom: -5px;
    margin-top: 10px;
    display: inline-block;
    color: #607d8b;
    font-weight: 300;
    font-size: 16px;
    Letter-spacing: 1px;
}
section .contentBx .formBx .inputBx input{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    Letter-spacing: 1px;
    color: #607d8b;
    background: transparent;
    border-radius: 30px;
}
input[type="submit"] section .contentBx .formBx .inputBx{
    background: #ff4584;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}
section .contentBx .formBx .inputBx input[type="submit"]:hover{
    background: #f53677;
}
section .contentBx .formBx .remember{
    margin-bottom: 10px;
    color: #607d8b;
    font-weight: 400;
    font-size: 14px;
}
section .contentBx .formBx .inputBx p{
    color: #607d8b;
}
section .contentBx .formBx .inputBx p a{
    color: #ff4584;
}

.btn-login {
    cursor: pointer;
    transition: 0.25s all;
}
.btn-login:hover {
    color: var(--white-color) !important;
    background: var(--text-color) !important;
}

.toggle-btn {
    cursor: pointer;
}
@media (max-width: 768px){
    section .imgBx{
        position: absolute;
        top: 0;
        Left: 0;
        width: 100%;
        height: 100%;
    }
    section .contentBx {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    section .contentBx .formBx{
        width: 100%;
        padding: 40px;
        background: rgb(255 255 255 / 0.9);
        margin: 50px;
        border-radius: 20px;
    }
    section .contentBx .formBx h3{
        color: #607d8b;
        text-align: center;
        margin: 30px 0 10px;
        font-weight: 500;
    }
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 29px !important;
    border-bottom-left-radius: 29px !important;
}