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



body{
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url(images/background.jpg); */
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    background-size:cover;
    background-position: center;
    padding: 20px;

}

.wrapper {
    width: 420px;
    background:linear-gradient(#0A444B, #047E84);
    border: 2px solid rgba(255, 255, 255,.2 );
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2) ;
    color:white;
    
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    color: #fff;

}

.wrapper .input-box {
    background:transparent;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;

}

.input-box input {
    width: 100%;
    height: 100%;
    background-color:#abcbcd;
    border: none;
    outline: none;
    border: 2px solid rgb(255, 255, 255,.2 );
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color:#0A444B;
    

}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.remember-forgot label{
    margin-left: 10px;
}
.remember-forgot label input {
    accent-color: #fff;
    margin-right: 2px;
}

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

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

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color:#0A444B;
    font-weight: 600;
}

.btn a{
    text-decoration: none;
    color:  #0A444B;
    font-size: 18px;
}
.member{
    font-size: 0.9rem;
    margin-top: 1.4rem;
    color: black;
    text-align: center;
    font-weight: 600;
}
.member a{
    color: white;
    text-decoration: none;
    
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.eye-icon:hover {
    color: #00bcd4; /* Change color on hover */
}


.image1 {
    text-align: center;
    font-size: 16px;
    padding-top: 8px;
}



.image1{
    text-align: center;
    border: 2px solid white;
    border-radius: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    padding-bottom: 10px;
    background-color: #fff;
    margin-top: 20px;
} 



.image1 a{
    text-decoration: none;
    color: #0A444B;
    padding-left: 10px;
}