body {
    background-color: rgb(246, 246, 246);
    transition: all 0.4s ease-out;
}
.login-box {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(17, 187, 88, 0.5);
    overflow: hidden;
    border-radius: 2em;
}

.login-box > img {
    width: 70%; height: auto;
    max-height: 30vh;
    filter: brightness(0) invert(1);
    margin-top: 2em;
    margin-left: 15%;
}

.login-box > .content {
    margin-top: 1em;
    width: 100%; height: 100%;
    background-color: rgb(249, 249, 249);
    border-top: 2px solid rgba(17, 187, 88, 0.9);
    text-align: center;
}

.login-box > .content .title {
    font-family: Gulf, Montserrat;
    color: rgb(68, 65, 65);
}

@media only screen and (max-width: 800px) {
    .login-box > img {
        width: 60%;
        height: auto;
        margin-left: 20%;
    }
}