
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #081b29;
}

.wrapper{
    position:relative;
    width: 750px;
    height: 450px;
    display: flex;
    background: transparent;
    border: 2px solid #0ef;
    box-shadow: 0 0 25px #0ef;
    overflow: hidden;
}

.wrapper .form-box{
    position: absolute;
    top: 0;
    flex: 50%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper .form-box .login{
    left: 0;
    padding: 0 40px;
}

.form-box h2{
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.form-box .input-box{
    position: relative;
    width: 98%;
    height: 40px;
    margin: 25px 0;
}

.input-box select{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    padding-right: 23px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    transition: .5s;
}

.input-box option{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    background-color: #081b29;
    pointer-events: none;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    padding-right: 23px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    transition: .5s;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    pointer-events: none;
}

.input-box input:focus~label,
.input-box input:valid~label{
    top: -5px;
    color: #0ef;
}

.input-box i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
}

.input-box input:focus~i,
.input-box input:valid~i{
    color: #0ef;
}

.btn{
    position: relative;
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid #0ef;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
}

.btn::before{
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: linear-gradient(#081b29, #0ef, #081b29, #0ef);
    z-index: -1;
    transition: .5s;
}

.btn:hover:before{
    top: 0;
}

.wrapper .info-text{
    position: relative;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex: 50%;
    flex-direction: column;
    justify-content: center;
}

.wrapper .info-text .login{
    right: 0;
    text-align: right;
    padding: 0 40px 60px 150px;
}

.info-text h2{
    font-size: 22px;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    margin-left: -150px;
    /*text-transform: uppercase;*/
}

.info-text p{
    font-size: 16px;
    color: #fff;
}

#tagline{
	color: orange;
	margin-left: -30px;
	font-size: 14px;
}

.wrapper .bg-animate{
    position: relative;
    top: -300px;
    right: -200px;
    width: 950px;
    height: 950px;
    background: linear-gradient(45deg, #081b29, #0ef);
    border-bottom: 3px solid #0ef;
    transform: rotate(5deg) skewY(50deg);
    transform-origin: bottom right;
    outline: none;
    z-index: 0;
}

.info-text img{
	width: 80px;
	height: 40px;
	border: 3px solid #0ef;
	padding: 1px;
	border-radius: 6px;
}

@media(max-width: 700px){
    
    .wrapper{
        width: 450px;
        height: 350px;
        overflow: hidden;
    }
	
	.form-box h2{
		font-size: 22px;
	}
	
	.info-text h2{
		font-size: 18px;
		margin-left: -100px;
		/*text-transform: uppercase;*/
	}

	.info-text img{
	width: 40px;
	height: 20px;
	}
	
	#tagline{
		color: orange;
		margin-left: -90px;
		font-size: 14px;
	}

}

