html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url("../../../assets/images/wallpaper/main_wallpaper.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000088;
}

a, #warningMessages, #links {
    color: #F8F8F8;
    font-weight: bold;
}

#actionsContainer {
    box-sizing: border-box;
    padding: 40px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* flex-grow: 1; */
    /* background-color: #FFFFFF66; */
    border-radius: 10px;
    z-index: 1;
}

#actionsContainer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#actionsContainer img {
    width: 300px;
    margin-bottom: 10px;
}

input, button {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #444445;
    border-radius: 3px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background: #FFFFFFDD;
    color: #222;
}

/* button {
    background-color: #c0392b;
    color: #F8F8F8;
    box-sizing: border-box;
    border: none;
    font-weight: bold;
    height: unset;
} */

button.submitButton {
    padding: 10px 20px;
    border: 2px solid #222;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

button.submitButton  {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border: 2px solid #444445;
    border-radius: 3px;
    margin-bottom: 5px;
    color: #222;
    text-shadow: none;
}

hr {
    background-color: #F8F8F8;
    width: 200px;
    border: none;
    height: 1px;
    box-shadow: 0px 0px 1px;
}

#warningMessages, #links {
    text-align: center;
}

a {
    cursor: pointer;
    padding: 4px;
}

@media only screen and (max-width: 768px) {
    body {
        background-image: unset;
        background-color: #444445;
        max-height: unset;
        height: calc(100vh + 500px);
        justify-content: start;
    }

    #mask {
        display: none;
    }
}