body {
    background-color: #2b2b2b;
    color: white;
}

#h1login {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: min(20%, 200px);
    font-size: 50px;

}
#err-msg
{
    position: relative;
    width: 100%;
    bottom: 20px;
}
.error-text
{
    color: red;
    text-align: center;
    display: none;
    width: 100%;
}
p {
    text-align: center;
    word-wrap: break-word;
    width: 50%;
    margin-left: max(25%, calc(50% - 225px));
    max-width: 450px;
}

#login_form {
    margin-left: min(40%, calc(50% - 100px));
    width: 20%;
    height: 40%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px white;
    border-style: solid;
    border-radius: 15px;
}

label {
    margin-top: 10px;
    font-size: large;
}

.auth_input {
    margin-top: 10px;
    border: white;
    border-style: solid;
    border-radius: 12px;
    font-size: large;
    background-color: transparent;
    color: white;
    text-align: center;
    width: 80%;

}

#submit {
    margin-top: 10px;
    margin-bottom: 10px;
    border: white;
    border-style: solid;
    border-radius: 12px;
    height: 28px;
    width: 120px;
    font-size: medium;
    background-color: transparent;
    color: white;
    max-width: 80%;
}