body {
    background-color: rgb(11,44,38);
}

.form-container {
    margin-top: 19px;
    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, select {
    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;
    user-select: none;
}

select {
    font-weight: 700px;
    width: 84%;
    height: 45px;
}

input:hover, select:hover {
    background-color: #ffffff;
}

input:focus, select: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;
}

#agreement {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 84%;
}

#terms-of-use {
    margin: 0px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    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);
    word-wrap: break-word;
    user-select: none;
}

#accept-checkbox {
    margin: 10px;
    width: 20px;
}

label {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
}

#signup-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;
}

#signup-button:hover {
    cursor: pointer;
    background-color:#009494;
}

#signup-button:active {
    cursor: pointer;
    font-size: 19px;
}

#signup-button:focus {
    outline: none;
    background-color:#009494;
}

#signup-button:disabled {
    background-color: dimgray;
    color:lightgray;
}

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;
}