* {
    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: url(img5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*animation: change 40s infinite ease-in-out;*/
}

.wrapper {
    width: 350px;
    background-color: rgba(131, 239, 8, 0.3);
    border: 3px solid rgba(255, 255, 255, .4);
    color: #e4e3ee;
    border-radius: 12px;
    padding: 30px 40px;

}

.wrapper h1 {
    font-size: 36px;
    text-align: center;

}

.wrapper h2 {
    font-size: 32px;
    text-align: center;

}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 38px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 80%;
    background: #1d9bf0;
    border: #0d0000;
    outline: #f30b0b;
    border: 3px solid rgba(7, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 17px;
    color: #faf7f7;
    padding: 20px 45px 20px 20px;

}

.input-box input::placeholder {
    color: #130101;

}

.input-box i {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
    font-size: 25px;

}

.wrapper .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;

}

.remember-forgot a:hover {
    text-decoration: underline;

}

.wrapper .button {
    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: #333;
    font-weight: 600;

}

.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;

}


.image-logo {

    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image: url('https://accert.org/login/logo.png');
    background-size: 100% 100%;
    background-blend-mode: normal, lighten, soft-light;
    height: 130px;
    width: 100px;
    padding: 55px;
    background-position: center;

}

.center-logo {
    display: block;
    height: 175px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}


#text {

    height: 40px;
    border-radius: 10px;
    padding: 4px;
    border: solid thin #aaa;
    width: 100%;
}

#button {
    padding: 10px;
    width: 100px;
    color: white;
    background-color: lightblue;
    border: none;


}

#box {


    background-color: rgba(0, 0, 255, 0.3);
    /* Blue with 50% transparency */
    margin: auto;
    width: 350px;
    padding: 20px;
}

#box1 {
    background-color: rgba(166, 225, 65, 0.3);
    /* Blue with 50% transparency */
    margin: auto;
    width: 420px;
    padding: 20px;
}

.imgpx {
    border-radius: 4px;
    border: #0d0000;
    border-width: 3px;


}

@keyframes change {
    0% {
        background-image: url(img1.jpg);
    }

    20% {
        background-image: url(img2.jpg);
    }

    40% {
        background-image: url(image.jpg);
    }

    60% {
        background-image: url(img4.jpg);
    }

    80% {
        background-image: url(img5.jpg);
    }

    100% {
        background-image: url(nature.jpg);
    }
}