* {
    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: 500px;
    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: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    height: 500px;
}
.wrapper1 {
    width: 500px;
    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: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    height: 400px;
}

 h1 {
    font-size: 36px;
    text-align: center;

}

 .input-box {
    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;
}

 .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: #fff;
    margin-right: 3px;
}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

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

.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.8rem;
    margin-top: 0.6rem;
    color: black;
    text-align: center;
}
.member a{
    color: white;
    text-decoration: none;
    margin-top: 0.6rem;
}

.input-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 13px 25px;
    background: #0A444B;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    width: 90px;
}

.input-box button:hover {
    background: gray;
}

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

.message {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    z-index: 10;
    transition: color 0.2s ease;
}
