*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

.wraper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(42, 58, 101, 1);
    background: url('bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.login-form{
    position: relative;
    max-width: 340px;
    padding: 30px 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    backdrop-filter: blur(2px);
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.login-form .form-title{
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
    margin: 20px 0;
}
.login-form .form-sub-title{
    text-align: center;
    font-size: 16px;
    margin: 35px 0;
}
.login-form .logo-container{
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0A1F68;
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 5px;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    /* background: white; */
    backdrop-filter: blur(20px);
}

.login-form .logo-container a{
    text-decoration: none;
}
.login-form .logo-container a img{
    width: 100%;
    border-radius: 50%;
}

.wraper .login-form .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin:15px 0;
}
.wraper .login-form .input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border:none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}
.wraper .login-form .input-box input::placeholder{
    color: white;
}
.wraper .login-form .input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: ;
}
.wraper .login-form .btn-container button{
    width: 100%;
    height: 45px;
    margin-top: 15px;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.wraper .forgot-container{
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    color: #fff;
}
.wraper .forgot-container input{
    margin-right: 3px;
    accent-color: #fff;
}

.login-form p{
    font-size: 14.5px;
    margin-top: 15px;
    text-align: center;
    color: #fff;
}
.login-form a{
    font-size: 14.5px;
    text-decoration: none;
    color: #fff;
}
.login-form a:hover{
    text-decoration: underline;
}

.text-red{
    margin-top: 20px;
    color: red;
}
.text-green{
    margin-top: 10px;
    color: green;
}