body {
    margin: 0 auto;
    font-family: monospace;
}

h1 {
    margin-bottom: 10px;
}

h4 {
    margin-top: 0;
}

.wrapper {
    background-color: burlywood;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(230, 230, 195, 0.3);
    padding: 1em;
    border-radius: 15px;
}

.users-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(230, 230, 195, 0.3);
    padding: 1em;
    border-radius: 15px;
}

.login-form label {
    margin: 10px 0 0 0;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.wide-btn {
    width: 100%;
    margin: 15px 0 0 0;
    padding: 0.75em;
    cursor: pointer;
}

/* media query to determine mobile devices */
@media only screen and (max-width: 880px) {
    .wrapper {
        background-color: white;
    }
}