html {
    height: 80%;
}

body {
    height: 100%;
    margin: 0%;
    font-family: Trebuchet MS, Helvetica, sans-serif;
    background-color: rgb(20,20,20,0.8);
}

#main {
    border-radius: 10px;
    display: grid;
    margin-top: 10%;
    margin-left: 20%;
    margin-bottom: 10%;
    margin-right: 20%;
    width: 60%;
    height: 70%;
    align-items: center;
    background: rgb(255,255,255);
    justify-items: center;
    box-shadow: 0px 0px 5px 2px black;
}

h1 {
    padding-top: 40px;
}

form {
    padding-bottom: 40px;
}

#login-error {
    width: 35%;
    height: 100%;
    justify-items: center;
    align-items: center;
}

#login-error-message {
    text-align: center;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    color: #8a0000;
    border: 1px solid #8a0000;
    background-color: #e58f8f;
    opacity: 0;
}

.form-field {
    border: none;
    border-bottom: 1px solid rgb(45,45,45);
    margin-bottom: 10px;
    border-radius: 3px;
    outline: none;
    padding: 0px 0px 5px 5px;
}

.form-field::placeholder {
    color: rgb(45,45,45);
    font-family: Trebuchet MS, Helvetica, sans-serif;
}

#showpassword {
    font-size: 12px;
}

#loginbutton {
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    background-color: rgb(45,45,45);
    cursor: pointer;
    outline: none;
    font-family: Trebuchet MS, Helvetica, sans-serif;
}