.login
{
    margin-top: 5%;
}

h1
{
    color: var(--hrdc-theme-teal);
    font-size: 24px;
    font-family: 'Gotham Bold';
    text-align: center;
}

.form-region
{
    width: 35%;
    height: 45%;
    margin: auto;
    padding-top: 5%;
    background-color: #ffffff;
    box-shadow: 0px 3.5px 13px 9px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 400px;
}

.username-label, .password-label
{
    color: var(--hrdc-theme-teal);
    font-size: 12px;
    font-family: 'Gotham Book';
    font-weight: bold;
    text-align: left;
    margin-right: 60%;
}

input#username, input#password
{
    width: 75%;
    height: 4em;
    color: #ffffff;
    border-color: var(--hrdc-theme-teal);
    border-radius: 5px;
    font-family: 'Gotham Book';
    text-indent: 5px;
    color: var(--hrdc-theme-teal);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14) inset;
}

input#submit
{
    background-color: var(--hrdc-theme-teal);
    border: none;
    color: white;
    text-decoration: none;
    font-size: 14px;
    width: 6em;
    height: 4em;
    font-weight: bold;
    font-family: 'Gotham Book';
    justify-content: center;
    margin-bottom: 10%;
}

input#submit:hover
{
    background-color: var(--hrdc-theme-green-yellow);
    border: none;
    color: white;
    text-decoration: none;
    font-size: 14px;
    width: 6em;
    height: 4em;
    font-weight: bold;
    font-family: 'Gotham Book';
    justify-content: center;
    margin-bottom: 10%;
    cursor: pointer;
}

li
{
    color: var(--hrdc-theme-teal);
    font-size: 14px;
    font-family: 'Gotham Book';
    font-weight: bold;
    text-align: center;
    list-style-type: none;
    text-indent: -2em;
}

@media (max-width: 550px) {
    .form-region {
        width: 85%;
        box-sizing: border-box;
        min-width: auto;
    }
    input#username, input#password {
        width: 80%;
    }
}