.passwordResetRequestFormLayout, .passwordResetNewPasswordFormLayout {
    display: grid;
    width: fit-content;
    gap: 2px;
    margin: 2px 0;
}

.passwordResetRequestFormItem, .passwordResetNewPasswordFormItem {
    padding: 1px;
}

.passwordResetRequestFormTextItem, .passwordResetNewPasswordFormTextItem {
    box-sizing: border-box;
    height: 24px;
    display: flex;
    align-items: center;
}

.usernameOrEmailInput {
    box-sizing: border-box;
    min-width:250px;
    width: 100%;
    height:22px;
}

.newPasswordInput, .reNewPasswordInput {
    box-sizing: border-box;
    width:100%;
    height:22px;
}

.resetPasswordButton, .savePasswordButton {
    width:100%;
    height:22px;
}

.returnToLoginPageLink {
    text-decoration: none;
    color: blue;
}

.returnToLoginPageLink:hover {
    text-decoration: underline;
}

.returnToLoginPageLink:visited {
    color: blue;
}