
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;500&display=swap');



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

header{
   
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.logo{
    font-size: 2em;
    color: #fff;

}

.navigation a{
    position: relative;
    font-size: 1em;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    color: white;
}

.btnLogin-popup{
    width: 130px;
    height: 50px;
    background: transparent;
    border-radius: 5px;
    outline: none;
    font-size: 1.1em;
    border: 2px solid #fff;
    margin-left: 40px;
    color: white;
}
.btnLogin-popup:hover{
    background-color: #fff;
    color: black;
    transition: .5s;
    
}

.navigation a::after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: -6px;
    border-radius: 5px;
    transform: scaleX(0);
}

.navigation a:hover::after{
    transform: scaleX(1);
    transition: .5s;
}


.gradient  {
	width: 100vw;
	height: 100vh;
	background: linear-gradient(334deg, #6bc4f7, #7525e2, #f7137e);
	background-size: 180% 180%;
	animation: gradient-animation 6s ease infinite;
    
}

@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.wrapper{
    justify-content: center;
    align-items: center;
    display: flex;
    background-position: center;
    position: relative;
    width: 400px;
    height: 400px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    display: flex;
    margin: auto;
    margin-top: 5%;
}

.wrapper .form-box{
    width: 100%;
    padding: 40px;
}

.form-box h2 {
    text-align: center;
    font-size: 2em;
    color: #321422;
}

.input-box{
    height: 50px;
    width: 100%;
    position: relative;
    border-bottom: 2px solid #000000;
    margin: 30px 0 ;
}

.input-box label{

    position: absolute;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    top: 50%;
    font-weight: 500;
    left: 5px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-weight: 400;
    padding: 0 35px 0 5px;
}

.input-box input:focus~label,
.input-box input:valid~label{
    top: -5px;
    transition: .5s;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: white;
    line-height: 57px;
}

.remember-forget{
    justify-content: space-between;
    font-size: .9em;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;


}
.remember-forget a{
    text-decoration: none;
    color: #36e3ec;
}


.remember-forget label input{
    accent-color: black;
    margin-right: 3px;
    
}
.remember-forget a:hover{
    text-decoration: underline;
    
}

button{
    width: 100%;
    height: 45px;
    background-color: #141432;
    border-radius:20px ;
    color: white;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;

}

.login-register{
    font-size: .9em;
    color: #141432;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}

.login-register p a {
    text-decoration: none;
    color: rgb(255, 225, 0);
    font-weight: 600;
}
.login-register p a:hover{
    text-decoration: underline rgb(255, 255, 255);
    
}