@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    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(../pictures/back.jpg); 
    background-color: hsla(222, 47%, 11%, 1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
}

a{
    text-decoration: none;
}

.page-logo
{
    width: 200px;
    top: 0;
}

.wrapper {
    width: 420px;
    height: 720px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 40px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px;
}

.wrapper:hover{
    box-shadow: 0 0 35px;
}

@media (max-width: 585px) {
    .wrapper {
        width: 100%;
        padding: 30px 20px;
    }
}
.wrapper h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
}

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

.input-box input {
    width: 100%;
    height: 100%;
    padding: 20px 45px 20px 20px;
    font-size: 18px;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 40px;
    border: 2px solid #fff;
    color: #fff;
    
}

.input-box input::placeholder {
    color: #fff;
    
}

label{
    display: inline;
    width: 50px;
}
.input-box i{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    
}

.input-box img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    cursor: pointer;
    height: 30px;
    vertical-align: middle;
}

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

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

}

.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;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    color: #333;

}

.btn:hover {
    background: #f2f2f2;
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

.details {
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 0 10px 10px 10px;
    gap: 10px;
}

.details p {
    font-size: 18px;
    font-weight: bold;
}

.btn:hover {
    background: #d8e3fa;
}