#registerForm {
    width: 500px;
}
#country {
    padding-left: 16px;
}
.passReqs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: -10px;
}
.requirement > span:nth-child(2) {
    color: red;
}
#recaptchaErrorMsg {
    left: unset;
    top: 83px;
    max-width: 300px;
}
#registerSubmit {
    padding: 10px 30px;
    border: 0;
    border-radius: 8px;
    line-height: 1.85;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--lime);
    transition: background-color .5s ease, color .5s ease;
}
#registerSubmit:hover {
    background-color: var(--lime-light);
    cursor: pointer;
}
.footerSpacer {
    margin-bottom: 40px;
}
