@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&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: #eeeeee;
    padding: 30px;
}

.container {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    perspective: 2800px;
    border-radius: 30px;
}

.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 .cover::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.1;
    z-index: 100;
}

.container .cover::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.1;
    z-index: 100;
    transform: rotateY(-180deg);
    border-radius: 30px;
}

.container #flip:checked ~ .cover{
    transform: rotateY(-180deg);
}

.container .cover img{
    position: absolute;
    /*height: 100%;*/
    /*margin-top: 40%;*/
    align-self:anchor-center;
    width: 99.5%;
    /*width: auto;*/
    object-fit: cover;
    background: white;
    z-index: 12;
    backface-visibility: hidden;
    border-radius: 30px;
}

.container .cover .back .backImg{
    transform: rotateY(180deg);
    border-radius: 30px;
}

.container .cover .text{
    position: absolute;
    z-index: 111;
    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;
    backface-visibility: hidden;
}

.cover .back .text .text-1,
.cover .back .text .text-2{
    transform: rotateY(180deg);
}

.cover .text .text-2{
    font-size: 15px;
    font-weight: 500;
}

.container form{
    height: 100%;
    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);
    /*background: red;*/
}

form .form-content .title{
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #FF8303;
}

form .form-content .title:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #FF8303;
}

form .signup-form .title:before{
    width: 20px;
}

form .form-content .input-boxes{
    margin-top: 30px;
}

form .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: #FF8303;
}

.form-content .input-box i{
    position: absolute;
    color: #FF8303;
    font-size: 17px;
}

form .form-content .text{
    font-size: 14px;
    font-size: 500;
    color: #333;
}

form .form-content .text a{
    text-decoration: none;
    color: #FFAF42;
}

form .form-content .text a:hover{
    text-decoration: underline;
}

form .form-content .button{
    color: #fff;
    margin-top: 40px;
}

form .form-content .button input{
    color: #fff;
    background: #FF8303;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
}

form .form-content .button input:hover{
    background: #FFAF42;
}

form .form-content label{
    color: rgba(255, 131, 3, 0.5);
    cursor: pointer;
}

form .form-content label:hover{
    text-decoration: underline;
}

form .form-content .login-text,
form .form-content .sign-up-text{
    text-align: center;
    margin-top: 25px;
}

.container #flip{
    display: none;
}

form .policy{
    display: flex;
    align-items: center;
}

form .policy h3{
    color: #174455;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.form-content .input-box label{
    position: absolute;
    top: 15px;
    left: 23px;
}

.form-content .input-box label span{
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    left: 20px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-content .input-box input:focus + label span,
.form-content .input-box input:valid + label span{
    color:  #FF8303;
    transform: translateY(-25px);
    font-size: 12px;
}

@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 ~ form .signup-form,
    .container #flip:checked ~ form .login-form{
        display: none;
    }
}