@import url('https://fonts.cdnfonts.com/css/vazirmatn');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins, sans-serif";
}
            
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("tokyo.jpg");
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed; 
}


.wrapper {
    background-color: transparent;
    width: 400px;
    border-radius: 24px;
    color: cornsilk;
    border: 3px solid rgba(255, 255, 255, .2);
    padding: 25px 35px;
    backdrop-filter: blur(15px);
    
}

.wrapper h1 {
    text-align: center;
    font-size: 37px;
    color: aquamarine;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.wrapper .input-box {
    height: 50px;
    width: 100%;
    margin: 30px 0;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 18px;
    color: beige;
    padding: 20px 40px 20px 20px;
}

.input-box input::placeholder {
    color: beige;
}

.wrapper .remember-forgot {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    margin: -13px 0 13px;
}

.remember-forgot label input {
    accent-color: beige;
    margin-right: 2px;
}

.remember-forgot a {
    color: beige;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.wrapper .btn {
    height: 35px;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    border-radius: 20px;
    border: none;
    outline: none;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, -2);

}

.wrapper .register-link {
    font-size: 14px;
    margin: 20px 0 10px;
    text-align: center;
}

.register-link p a {
    color: beige;
    font-weight: 500;
    text-decoration: none;
    margin-left: 5px;
}

.register-link p a:hover {
    text-decoration: underline;

}

.input-box :hover {
     transform: scale(1.05); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  z-index: 1; 
}

.btn:hover {
  
  background-color: lavender;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2; 
}
