body {
    background-color: #123524;
}

.form-container {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    max-width: 450px;
    width: 85%;
    display: block;
    background-color:#f0fff0;
    border-radius: 6px;
    border: 1px solid black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

input {
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 3px;
    padding-left: 10px;
    display: block;
    width: 80%;
    height: 35px;
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    border: 1px solid black;
    font-size: 18px;
    font-weight: bold;
}

input:hover {
    background-color: rgb(245, 245, 245);
}

::placeholder {
    font-size: 18px;
    font-weight: bold;
    color: #4d4d4d;
}

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;
}

#reset-password-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;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 5px;
}

#reset-password-button:hover {
    cursor: pointer;
    background-color:#009494;
}

#reset-password-button:active {
    cursor: pointer;
    font-size: 19px;
}

a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    color:#0b2016;
}