#accountRegister {
    padding: 40px 20px;
    max-width: 400px;
    margin: auto;
    position: relative;
}

#accountRegisterLoader {
    display: none;
}

#accountRegisterLoader.active {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .85;
}

#accountRegisterLoader.active .loader.active {
    color: #338e45a6;
}

#accountRegisterForm .floatingLabelInput:not(.floatingLabelInput:last-of-type) {
    margin-bottom: 14px;
}

#accountRegisterPasswordTitle {
    margin-bottom: 10px;
}

#accountRegisterPasswordInfo {
    text-align: center;
    color: var(--darkgrey);
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 12px;
    font-weight: lighter;
}

#accountRegisterNewsLetter, #accountRegisterSms {
    margin: 31px 0 23px 0;
}

#accountRegisterLegal {
    text-align: center;
    font-size: 14px;
    font-weight: lighter;
    color: var(--darkgrey);
    line-height: 18px;
    max-width: 244px;
    margin: 0 auto 30px auto;
}

#accountRegisterOtherMethodsLabel {
    text-align: center;
    color: var(--darkgrey);
    margin: 15px 0;
    position: relative;
    width: 100%;
}

#accountRegisterOtherMethodsLabel::before {
    content: "";
    position: absolute;
    left: 0;
    background: var(--mediumgrey);
    height: 1px;
    width: calc(50% - 20px);
    top: 50%;
    transform: translateY(50%);
}

#accountRegisterOtherMethodsLabel::after {
    content: "";
    position: absolute;
    right: 0;
    background: var(--mediumgrey);
    height: 1px;
    width: calc(50% - 20px);
    top: 50%;
    transform: translateY(50%);
}

#accountRegisterExternalProviders {
    display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

#accountRegisterExternalProviders.active {
    display: flex;
}

#accountRegisterExternalProviderButtons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#appleAuth {
    display: none;
}

#appleid-signin {
    height: 38px;
}