﻿body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "OpenSans", sans-serif;
    margin: 0px;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 300px;
}

#username, #password, #submit {
    margin-bottom: 24px;
}

#username, #password {
    font-size: 24px;
    height: auto;
    width: auto;    
    border: 2px solid gray;
    border-radius: 3px;
    font-family: "OpenSans", sans-serif;
    padding: 4px;
}

#submit {
    width: auto;
    font-size: 28px;
    padding: 12px;
    background-color: #66CC99;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: none;
}

#submit:hover {
    background-color: #009973;
    box-shadow: 2px 3px 6px black;
}

h1 {
    color: white;
    font-size: 48px;
}

#header1 {
    background-color: #66CC99;
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

p {
    font-size: 18px;
    font-weight: 700;
}

