
body {
    font-family: 'roboto_light', sans-serif;
    background-color: hsl(150, 20%, 6%);
    color: white;
    margin: 0;
    text-align: center;
}

.centered {
    position: absolute;
    width: 80vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#login-input, #login-button {
    font-size: 1.3rem;
}

#login-input, textarea {
    max-width: 100%;
    background-color: hsl(150, 100%, 87%);
    outline: none;  /* Custom focus styling. */
}

#login-input, textarea, button {
    border: 3px solid hsl(150, 40%, 60%);
}

#login-input:focus, textarea:focus, button:hover {
    border-color: hsl(234, 100%, 75%);
    background-color: hsl(234, 60%, 90%);
}

button:hover {
    color: black;
}

button {
    margin: 1rem;
    padding: 4px 10px;
    border-radius: 8px;
    background-color: hsl(150, 25%, 25%);
    color: white;
    font-weight: bold;
}
