*, ::before, ::after {
    box-sizing: border-box;
}

body {
    background-color: black;
    margin: 0px;
    background-image: url('/images/resources/mainbg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: black;
    background-blend-mode: luminosity;
    background-size: cover;
    color: white;
    font-size: 18px;
}

form {
    padding: 5vh 5vw;
    margin: auto;
    max-width: 700px;
    min-width: 80%;
    min-height: 80vh;
}

#loginBackButton {
    text-decoration: none;
    background-color: black;
    color: White;
    font-size: 18px;
    font-weight: bolder;
    letter-spacing: 3px;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
}

#login-form {
    max-width: 500px;
    margin: auto;
    background-color: rgba(255,255,255,10%);
    padding: 50px;
    border-radius: 20px;
}

#login-form li {
    list-style: none;
    margin: auto;
    padding: 20px 5px;
    max-width: 700px;
}

#login-form label {
    font-size: 16px;
    color: white;
    padding: 0px 0px 0px 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

#login-form input {
    width: 100%;
    max-width: 700px;
    padding: 5px 20px;
    margin: 8px auto;
    display: block;
    border-radius: 4px;
    box-sizing: border-box;
    color: black;
}

#login-form input:focus-visible {
    outline: none;
}

.buttons {
    margin-top: 50px;
}

.buttons input {
    width: 100%;
    background-color: #ff0101;
    color: black;
    font-size: 16px;
    font-weight: bolder;
    letter-spacing: 5px;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.buttons input:hover {
    background-color: rgba(0,0,0,15%);
    color: #ff0101;
    outline: 2px #ff0101 solid;
}