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

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

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background:#fff;
}

@keyframes animateBg {
    100% {
        filter: hue-rotate(360deg)
    }
}

.login-box {
    position: relative;
    width: 600px;
    background: transparent;
    border: 1px solid rgba(119, 92, 92, 0.5);
    border-radius: 50px;
    display: block;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);

}

h2 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
	font-weight: 500;
}

.input-box {
    position: relative;
    width: 310px;
    margin: auto;
    border-bottom: 2px solid #fff;
}

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

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

.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #fff;
    padding: 0 35px 0 5px;
}

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

.remember-forgot {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input {
    margin-right: 3px ;
}

.remember-forgot a {
    color: #fff;
    text-decoration: none;}

    .remember-forgot a:hover {
       text-decoration: underline;
    }

    .btnn {
        width: 50%;
		position:relative;
		margin:auto;
		display:block;
		margin-top:30px;
        height: 40px;
        background: #fff;
        border: none;
        outline: none;
        border-radius: 40px;
        cursor: pointer;
        font-size: 1rem;
        color: #000;
        font-weight: 500;
    }  
    .btnn:hover{
        background: #0ad142;
       
    }  

    .register-link {
        font-size: .9rem;
        color: #fff;
        text-align: center;
        margin: 25px 0 10px;
    }

    .register-link p a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;    
    }

    .register-link p a:hover {
        text-decoration: underline;
    }

    @media (max-width: 360px) {
        .login-box {
            width: 100%;
            height: 100vh;
            border: none;
            border-radius: 0;
		
        }

        .input-box {
            width: 290px;
        }
    }
	
	.register-box{
		padding: 30px;
    	position: relative;
    	width: 800px;
    	min-height: 600px;
		height:auto;
    	background: transparent;
    	border: 1px solid rgba(119, 92, 92, 0.5);
    	border-radius: 50px;
    	justify-content: center;
    	align-items: center;
    	backdrop-filter: blur(8px);
	}