#mainContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#topMessages {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    max-width: 90%;
    text-align: center;
}
#registerForm {
    max-width: 95%;
    width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    box-sizing: border-box;
}
.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
.rowBlock {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.formInputContainer {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.formInput {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    /*line-height: 1.85;*/
    box-sizing: border-box;
}
.floatingLabel {
    position: absolute;
    left: 20px;
    top: -10px;
    background-color: white;
    font-size: 15px;
    cursor: text;
    border-radius: 3px;
}
#country {
    padding-left: 16px;
}
.requiredStar {
    color: red;
    font-size: 25px;
    position: absolute;
    top: 6px;
    left: 4px;
}
#togglePassword, #toggleConfirmPassword {
    position: absolute;
    right: 10px;
    top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    color: black;
    font-size: 21px;
}
.passReqs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: red;
    margin-top: -10px;
}
.passReqs > *::first-letter {
    color: black;
    font-weight: 700;
}
.passReqs > *:first-child, .passReqs > *:first-child::first-letter {
    color: black;
    font-weight: 500;
}
.errorMsg {
    position: absolute;
    left: 9px;
    top: 40px;
    font-size: 14px;
    font-weight: 500;
    color: red;
    background-color: white;
    line-height: .8;
}
#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;
}

@media (max-width: 600px) {
    .topMessage {
        font-size: 14px;
    }
}
