#container
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 1;
}

#formContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;

    width: 100%;
    height: 100%;
    max-width: 600px;
    background-color: #2BAE66;
    box-shadow: #276c46 0 0 5px 5px;

    font-size: 1.5rem;
}

#formContainer form
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


.formPart
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    width: 70%;
    font-size: 1.8rem;
}

.formPart label, .formPart input
{
    width: 100%;
    min-width: 250px;
}

.formPart input
{
    padding-left: 5px;
    height: 30px;
    border: 2px solid black;
    font-size: 1.3rem;
}

.formPart input[type = "password"]
{
    letter-spacing: 5px;
}

.submitDiv
{
    width: 70%;
    gap: 10px;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.submitDiv a
{
    font-size: 1.2rem;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submitDiv input
{
    font-size: 1.8rem;
    flex: 1;
    height: 30px;
    border: 2px solid black;
    cursor: pointer;
}

input[type=submit]:hover
{
    background-color: lightgrey;
}

@media (max-width: 440px)
{
    .submitDiv
    {
        flex-direction: column;
    }
}

