* {font-family: Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}
body {
    /* background: url("/static/img/server.jpg"); */
    background-color: #111;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow-y: hidden;
}
/* body::before, body::after { */
body::before {
    content: "";
    background: url("https://assets.choomai.net/imgs/09 gettyimages-582227825.webp");
    /* background-size: 50vw 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: -2;
}
/* body::after {
    left: 50%;
    right: 0;
    transform: scaleX(-1);
} */

div.reduced-fullpage {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

a {text-decoration: none;}
a:hover {text-decoration: underline;}
div.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0,0,0,50%);
    border-radius: 0.5cm;
    margin: auto;
    padding: 0.5cm;
    backdrop-filter: blur(0.1cm);
    width: 30vw;
}
/* span.message {
    position: absolute;
    top: 3vh;
    width: 30vw;
    background-color: rgba(0,0,0,80%);
    backdrop-filter: blur(0.1cm);
    padding: 0.5cm;
    border-radius: 0.5cm;
} */
form#login {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#user, #pass {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    height: 30px;
    border-radius: 50px;
    border: 1px solid transparent;
    width: -webkit-fill-available;
    width: -moz-available;
    line-height: inherit;
}

@media screen and (max-width: 768px) {
    div.container {width: 50vw;}
}
@media screen and (max-width: 425px) {
    /* body::before {
        background-size: 100vw 100vh;
        right: 0;
    }
    body::after {content: unset;} */
    div.container {width: 90vw;}
}

h1.auth-type {
    margin-top: 10px;
    margin-bottom: 0;
}

div.input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

div.action {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

input.login {
    display: inline-block;
    height: 40px;
    width: 130px;
    font-size: 20px;
    border-radius: 1em;
    background-color: #1a73e8;
    border: 1px solid transparent;
    padding: 6px 12px;
    transition: 500ms ease;
}
input.login:hover {
    background-color: #185abc;
    box-shadow: 3px 3px 15px #185abcaa;
    transition: 300ms ease;
    cursor: pointer;
}
.auth-hyp {color: lime}