/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7d2ae8;
    padding: 30px;
}
.container{
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 14px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    perspective: 2700px;
}
.container .cover{
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
}
.container #flip:checked ~ .cover{
    transform: rotateY(-180deg);
}
.container .cover .front,
.container .cover .back{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.cover .back{
    transform: rotateY(180deg);
    backface-visibility: hidden;
}
.container .cover::before,
.container .cover::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #7d2ae8;
    opacity: 0.5;
    z-index: 12;
}
.container .cover::after{
    opacity: 0.3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}
.container .cover img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}
.container .cover .text{
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cover .text .text-1,
.cover .text .text-2{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.cover .text .text-2{
    font-size: 15px;
    font-weight: 500;
}
.container .forms{
    /*height: 55%;*/
    width: 100%;
    background: #fff;
}
.container .form-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-content .login-form,
.form-content .signup-form{
    width: calc(100% / 2 - 25px);
}
.forms .form-content .title{
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}
.forms .form-content .title:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #7d2ae8;
}
.forms .signup-form  .title:before{
    width: 20px;
}
.forms .form-content .input-boxes{
    margin-top: 30px;
}
.forms .form-content .input-box{
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}
.form-content .input-box input{
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.form-content .input-box input:focus,
.form-content .input-box input:valid{
    border-color: #7d2ae8;
}
.form-content .input-box i{
    position: absolute;
    color: #7d2ae8;
    font-size: 17px;
    left: 7px;
    top: 11px;
}
.forms .form-content .text{
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.forms .form-content .text a{
    text-decoration: none;
}
.forms .form-content .text a:hover{
    text-decoration: underline;
}
.forms .form-content .button{
    color: #fff;
    margin-top: 40px;
}
.forms .form-content .button input{
    color: #fff;
    background: #7d2ae8;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}
.forms .form-content .button input:hover{
    background: #5b13b9;
}
.forms .form-content label{
    color: #5b13b9;
    cursor: pointer;
}
.forms .form-content label:hover{
    text-decoration: underline;
}
.forms .form-content .login-text,
.forms .form-content .sign-up-text{
    text-align: center;
    /*margin-top: 25px;*/
}
.container #flip{
    display: none;
}
@media (max-width: 730px) {
    .container .cover{
        display: none;
    }
    .form-content .login-form,
    .form-content .signup-form{
        width: 100%;
    }
    .form-content .signup-form{
        display: none;
    }
    .container #flip:checked ~ .forms .signup-form{
        display: block;
    }
    .container #flip:checked ~ .forms .login-form{
        display: none;
    }
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /*overflow: hidden;*/
    background: url("bg.png"), -webkit-linear-gradient(bottom, #0250c5, #d43f8d);
}
::selection{
    color: #fff;
    background: #d43f8d;
}

.container header{
    /*font-size: 35px;*/
    font-weight: 600;
    margin: 0 0 30px 0;
}
.container .form-outer{
    width: 100%;
    overflow: hidden;
}
.container .form-outer form {
    display: flex;
    width: 400%;
}
.form-outer form .page{
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
}
@media screen and (max-width: 450px) {
    .form-outer form .page {
        width: 25%;
        transition: margin-left 0.3s ease-in-out;
        margin-top: 1%;
    }
    .password-toggle-icon {
        position: absolute;
        top: 2%!important;
        right: 10%!important;
        transform: translateY(-50%);
        cursor: pointer;
        left: 86%!important;
    }
}
.form-outer form .page .title{
    text-align: left;
    /*font-size: 25px;*/
    font-weight: 500;
}
.form-outer form .page .field{
    width: 330px;
    /*height: 45px;*/
    margin: 6% 0;
    display: flex;
    position: relative;
}
form .page .field .label{
    position: absolute;
    top: -25px;
    font-weight: 500;
}
@media screen and (max-width: 450px) {
    form .page .field .label {
        position: absolute;
        top: -25px;
        font-weight: 500;
        left: 70px;
    }
}
.signup{
    width: 100%;
    /*height: calc(100% + 5px);*/
    border: none;
    background: #d33f8d;
    margin-top: -20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}
@media screen and (max-width: 450px) {
    .signup{
        width: 32% !important;
        height: calc(66% + 5px) !important;
        border: none;
        background: #d33f8d;
        margin-top: -20px;
        margin-bottom: 10px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: 0.5s ease;
    }
}
form .page .field input {
    height: 117%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 0px;
}

@media screen and (max-width: 450px) {
    form .page .field input {
        height: 100%;
        width: 60%;
        border: 1px solid lightgrey;
        border-radius: 5px;
        padding-left: 15px;
        font-size: 16px;
        cursor: pointer;
        margin-left: 67px;
    }
}

form .page .field select{
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}
@media screen and (max-width: 450px) {
    form .page .field select {
        width: 60%;
        margin-bottom: 5%;
        padding-left: 10px;
        font-size: 17px;
        font-weight: 500;
        margin-left: 69px;
        height: 100%;

    }
}
form .page .field button{
    width: 100%;
    /*height: calc(100% + 5px);*/
    border: none;
    background: #d33f8d;
    margin-top: -20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}
@media screen and (max-width: 450px) {
    form .page .field button {
        width: 60%;
        /*height: calc(100% + 5px);*/
        border: none;
        background: #d33f8d;
        margin-top: -20px;
        margin-bottom: 10px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: 0.5s ease;
        margin-left: 66px;
        height: 31px;

    }
}
form .page .field button:hover{
    background: #000;
}
form .page .btns button{
    margin-top: 0px !important;
}
form .page .btns button.prev{
    margin-right: 40px;
    margin-left: 0px;
    font-size: 17px;
}
@media screen and (max-width: 450px) {
    form .page .btns button.prev {
        margin-right: -48px;
        margin-left: 66px;
        width: 95px;
        font-size: 17px;
    }
}
form .page .btns button.next{
    margin-left: 60px;
}
@media screen and (max-width: 450px) {
    form .page .btns button.next {
        margin-left: 89px;
        width: 63px;
    }
}
.container .progress-bar {
    display: flex;
    /*margin: 40px 120px;*/
    margin: 4% 10%;

    user-select: none;
}


@media only screen and (max-width: 768px) {
    .container .progress-bar {
        margin: 20px;
    }
}
.container .progress-bar .step{
    text-align: center;
    width: 100%;
    position: relative;
}
.container .progress-bar .step p{
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}
@media screen and (max-width: 450px) {
    .container .progress-bar .step p {
        font-weight: 500;
        font-size: 11px;
        color: #000;
        margin-bottom: 8px;
    }
}
.progress-bar .step .bullet{
    height: 25px;
    width: 25px;
    border: 2px solid #000;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
}
.progress-bar .step .bullet.active{
    border-color: #d43f8d;
    background: #d43f8d;
}
.progress-bar .step .bullet span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2px;
}
.progress-bar .step .bullet.active span{
    display: none;
}

.progress-bar .step .bullet:before,
.progress-bar .step .bullet:after{
    position: absolute;
    content: '';
    bottom: 11px;
    right: -53px;
    height: 3px;
    width: 43px;
    background: #262626;
}
@media screen and (max-width: 450px) {
    .progress-bar .step .bullet:before,
    .progress-bar .step .bullet:after {
        position: absolute;
        content: '';
        bottom: 11px;
        right: -19px;
        height: 3px;
        width: 16px;
        background: #262626;
    }
}
.progress-bar .step .bullet.active:after{
    background: #d43f8d;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}
@media only screen and (max-width: 768px) {
    .progress-bar .step .bullet.active:after {
        background: #d43f8d;
        transform: scaleX(0);
        transform-origin: left;
        animation: animate 0.3s linear forwards;
    }
}
@keyframes animate {
    100%{
        transform: scaleX(1);
    }
}
.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after{
    display: none;
}
.progress-bar .step p.active{
    color: #d43f8d;
    transition: 0.2s linear;
}
.progress-bar .step .check{
    position: absolute;
    left: 50%;
    top: 78%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}
.progress-bar .step .check.active{
    display: block;
    color: #fff;
}
.mx-auto {
    display:none;
}
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*height: 36vh;*/
}

.slide-page {
    width: 80%;
}

.field {
    margin-bottom: 20px;
}

.label {
    margin-bottom: 5px;
}

input[type="text"],
button {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}
.password-toggle-icon {
    position: absolute;
    top: 10%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    left:94%;

}

.password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    color: #333;
    transition: color 0.3s ease-in-out;
    margin-bottom: 20px;
}

.password-toggle-icon i:hover {
    color: #000;
}
.hand{
    display:none;
}
