.upperBar {
    max-height: 50px;
    display: flex;
}

.upperBar>* {
    display: flex;
}

.upperBarName,
.upperBarName>* {
    background: var(--rightBackground) !important;
    color: var(--cornersTextColor);
}

.upperBarClosePopup {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.upperBarClosePopupButton {
    right: 0;
    scale: 0.7;
}

.loginFormTitle{
    margin: 0;
    margin-top: 25px;
    margin-bottom: 5px;
}

.loginFormInput {
    width: 100%;
    margin: 0;
    height: 20px;
    display: flex;
}

.textInput{
    display: flex;
    flex-direction: row;
}

.passwordInput{
    display: flex;
    flex-direction: row;
}

.showPasswordIcon{
    display: flex;
    margin: auto;
}

.loginFormHelper {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.loginFormHelperRegister{
    margin-right: auto;
}

.loginFormHelperRecover{
    margin-left: auto;
}

.loginFormSubmitButton{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    max-height: 40px;
    margin-top: 5px;
}

.loginFormSubmitButton>*{
    margin: auto;
    flex-direction: column;
    display: flex;
    height: 100%;
    padding: 5px 10px !important;
    height: 100%;
}

.loginFormSubmitButtonItem>*{
    background: var(--rightBackground) !important;
}

.loginFormSubmitButtonItem,.loginFormSubmitButtonText{
    background: var(--orange)!important;
    color: var(--whiteTextColor);
    font-weight: bold;
    padding: 0px;
}

.sideToSideFlex{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sideToSideFlex>*{
    min-width: 45%;
}

.termsCheckbox{
    opacity: 0;
    position: fixed;
    transform: translateX(3px) translateY(12px);
    scale: 3;
}

.termsCheckboxCustomChecked{
    background-image: url('source/checkmark.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.termsCheckboxCustom{
    display: flex;
    margin: auto;
    min-width: 15px;
    min-height: 15px;
    border: rgba(224, 224, 224, 255) 4px solid;
    display: flex;
    padding: 3px;
}

#errorCodeOutput{
    text-align: center;
}

/*LoginBox related code that is on newhomepage*/

.loginRegisterBoxUpperBar{
    position: fixed;
    width: 544px;
    height: 2px;
    background-color: var(--white);
    margin: auto;
    transform: translateY(-2px);
}

.loginRegisterBoxLeftBar{
    width: 2px;
    height: 100%;
    background-color: var(--white);
    margin: auto;
    transform: translateX(-2px);
}

.loginRegisterBoxRightBar{
    width: 2px;
    height: 100%;
    background-color: var(--white);
    margin: auto;
    transform: translateX(2px);
}

.loginRegisterBoxLowerBar{
    position: fixed;
    width: 544px;
    height: 2px;
    background-color: var(--white);
    margin: auto;
    bottom: 8px;
}