#mainContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.messageBlock {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 90%;
}
.message {
    color: black;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.pageForm {
    max-width: 95%;
    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;
}
.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;
}
.errorMsg, .successMsg {
    position: absolute;
    left: 9px;
    top: 40px;
    font-size: 14px;
    font-weight: 500;
    color: red;
    background-color: white;
    line-height: .8;
}
.successMsg {
    color: green;
}
.formButton {
    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;
}
.formButton:hover {
    background-color: var(--lime-light);
    cursor: pointer;
}

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