/* POPPINS FONT */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    padding: 0; 
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
body {    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(background.jpg);
    background-size: cover;
}
.wrapper{    
    width: 400px;
    color:rgb(234, 234, 234);
    padding: 30px 40px;
    background: rgba(186, 186, 186, 0.15);
    border-radius: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur (10px);
    border: 1px solid rgba(178,178,178,0.2);
}    
.wrapper h1{
    font-size: 28px;
    text-align: center;
}
.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(225, 225, 255, 0.2);
    border-radius: 2rem;
    font-size: 16px;
    color: white;
    padding: 20px;
    transition: 0.4s ease-in-out;
}
.input-box input:focus{
border: 2px solid rgb(0, 255, 255);
box-shadow: ee 25px rgb(0, 255, 255);
}

.input-box input::placeholder {

color: white;
}

.input-box i{
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
}



.form-control {
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(225, 225, 255, 0.2);
    border-radius: 2rem;
    font-size: 16px;
    color: white;
    padding: 9px;
    transition: 0.4s ease-in-out;
    
}







.wrapper .remember-forgot {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
margin: 20px 0;
}


.remember{
display: flex;
align-items: center;
gap: 5px;
}
.remember-forgot label input{
accent-color: white;
margin-right: 5px;
}
.remember-forgot a{
color: white;
border-bottom: 2px solid transparent;
}
.remember-forgot a:hover{
border-bottom: 2px solid white;
}

button{
width: 100%;
height: 50px;
background-color: transparent;
border: 1px solid white;
border-radius: 1rem;
font-size: 20px;
color: white;
cursor: pointer; position: relative;
transition: 0.4s ease-in-out;
}

button::before{
content:"";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
border-radius: 1rem;
background: transparent;
z-index: -1;
}

button:hover{
    border: none;
    z-index: 0;
    background: linear-gradient(to top right,
    #00fff7,#ff00f7 );
    box-shadow: 25px 0 100px #e100ff,
    -25px 0 100px  #00f7ff;
    }

.wrapper .register-link{
font-size: 14px;
text-align: center;
margin-top: 20px; 
margin: 20px 15px;
}
.register-link p a{
     color: white; 
     text-decoration: none; 
    font-weight: 600;
}
.register-link p a:hover{ 
    text-decoration: underline;
}
