body.login {
    font-weight: bold;
    background: none;
    position: relative;
}
body.login::after {
    content: "";
    position: absolute;
    opacity: 0.3;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 50%;
    background-image: url(../images/background_2.png);
    background-repeat: no-repeat;
    background-position: 5% 50%;
    background-size: 200%;
    z-index: -10;
}
body.isMobile.login::after {
    width: 100%;
    background-size: 300%;
}

#login {
    width: 400px;
}

#loginOuterContainer {
    width: calc(100% / 3 * 2);
}
body.isMobile #loginOuterContainer {
    width: 100%;
}

#login input, #login select, #login button {
    width: 100%;
}

#registerButtonLikeDiv {
    border: 2px solid var(--atlantis-blue);
    border-radius: 15px;
    text-align: center;
    padding: 5px 15px;
    font-size: 1.2rem;
    line-height: 2;
    background-color: white;
    color: var(--atlantis-darkgrey);
}
#registerButtonLikeDiv:hover {
    border: 2px solid var(--atlantis-blue-text);
    color: var(--atlantis-anthracite);
}
