body {
    background-color: rgb(11,44,38);
}

.form-container {
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    max-width: 450px;
    width: 85%;
    display: block;
    background-color:#f0fff0;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

h2 {
    display: block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-align: center;
    color: rgb(11,44,38);
    border-bottom: 1px solid rgba(11, 44, 38, 0.3);
    width: 80%;
}

input {
    margin: 15px;
    margin-left: auto;
    margin-right: auto;
    padding: 3px;
    padding-left: 10px;
    display: block;
    width: 80%;
    height: 35px;
    background-color: #fefffe;
    border-radius: 5px;
    border-top: 1px solid rgba(11,44,38, 0.5);
    border-bottom: 2px solid rgb(11,44,38);
    border-left: 2px solid rgba(11, 44, 38, 0.5);
    border-right: 1px solid rgba(11, 44, 38, 0.5);
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

input:hover {
    background-color: #ffffff;
}

input:focus {
    outline: none;
}

::placeholder {
    font-size: 18px;
    color: #4d4d4d;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

#service-checkboxes {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#service-checkboxes input {
    margin: 10px;
    width: 25px;
    display: inline;
}

#service-checkboxes label {
    font-size: large;
}

#login-button {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    height: 50px;
    background-color: #008080;
    color: white;
    font-size: 20px;
    border-top: 1px solid rgba(11,44,38, 0.5);
    border-bottom: 2px solid rgb(11,44,38);
    border-left: 2px solid rgba(11, 44, 38, 0.5);
    border-right: 1px solid rgba(11, 44, 38, 0.5);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    user-select: none;
}

#login-button:hover {
    cursor: pointer;
    background-color:#009494;
}

#login-button:active {
    cursor: pointer;
    font-size: 19px;
}

#login-button:focus {
    outline: none;
    background-color:#009494;
}

a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    color:rgb(11,44,38);
}

a:active {
    font-size: 16.8px;
}