/*** Login ***/
#accountLogin {
    padding: 30px;
    max-width: 400px;
    margin: auto;
    position: relative;
}

#accountLoginLoader {
    display: none;
}

#accountLoginLoader.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;
}

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

#accountLoginFormFooter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 0 16px;
}

#accountLoginEmail {
    margin-bottom: 14px;
}

#newGuests {
    display: none;
}

#newGuests.active {
    display: block;
    padding: 0 30px 30px;
    max-width: 400px;
    margin: auto;
}

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

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

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

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

#accountLoginExternalProviders.active {
    display: flex;
}

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

#appleAuth {
    display: none;
}

#appleid-signin {
    height: 38px;
}