.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 440px;
    background: transparent;
    border: 2px solid rgba(233, 183, 146, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.wrapper .form-box {
   width: 100%;
   padding: 40px;
}

.form-box h2{
   font-size: 2em;
   color: #162938;
   text-align: center;
}

.input-box {
   position: relative;
   width: 100%;
   height: 50px;
   border-bottom: 2px solid #162938;
   margin: 30px 0;
}

.input-box label{
   position: absolute;
   top: 50%;
   right: 5px;
   transform: translateY(-50%);
   font-size: 1em;
   color:#162938;
   font-weight: 500;
   pointer-events: none;
   transition: 0.5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
   top: -5px;
}


.input-box input{
   width: 100%;
   height: 100%;
   direction: rtl;
   background: transparent;
   border: none;
   outline: none;
   font-size: 1em;
   color: #162938;
   font-weight: 600;
   padding: 0 35px 0 5px;
}

.input-box .icon{
   position: absolute;
   left: 8px;
   font-size: 1.2em;
   color:#162938;
   line-height: 57px;
   transition: .5s;
}

.remember-forgot {
   font-size: .9em;
   color:#162938;
   font-weight: 500;
   margin: -15px 0 15px;
   display: flex;
   justify-content: space-between;
}

.remember-forgot label input {
   accent-color: #162938;
   margin: 3px;
}

.remember-forgot a {
   color: #162938;
   text-decoration: none;
}

.remember-forgot a:hover {
   text-decoration: underline;
}

.btn-login {
   width: 100%;
   height: 45px;
   margin-top: 10px;
   background:#162938;
   border: none;
   outline: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 1em;
   color:#fff;
   font-weight: 500;
}

.register-link {
   font-size: .9em;
   color: #162938;
   text-align: center;
   font-weight: 500;
   margin: 25px 0 10px;
}

.remember-forgot p a {
   color:#162938;
   text-decoration: none;
   font-weight: 600;
}

.login-tegister {
   font-size: 1.1em;
   color: #162938;
   text-align: center;
   font-weight: 700;
   margin: 25px 10px;
}

.login-tegister p a {
   color:#162938;
   text-decoration: none;
   font-weight: 600;
}

.login-tegister p a:hover {
   text-decoration: underline;
}

.login-register {
    font-size: 1.4em;
    text-align: center;
    margin: 25px 0;
}

.login-register .register-link {
    color: #b4e3ff;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    background: linear-gradient(transparent 60%, rgba(180, 227, 255, 0.25) 40%);
    padding: 0 6px;
}

.login-register .register-link:hover {
    color: #e8ecef;
}