.social-login-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}
.social-login-wrapper .initialising {
    display: none;
}
.social-login-wrapper.horizontal {
    flex-flow: row nowrap;
}
.social-login-wrapper.vertical {
    flex-flow: column nowrap;
}
.social-login-wrapper button {
    display: flex;
    padding: 10px 28px 10px 28px;
    gap: 0 15px;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    font-family: "Gotham";
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 100px;
    text-transform: uppercase;
}
.social-login-wrapper.vertical button {
    width: 100%;
}
.social-login-wrapper.horizontal button {
    width: calc(50% - 4px);
}
.social-login-wrapper.vertical button svg {
    display: block;
    width: 24px;
    height: auto;
    flex: none;
}
.social-login-wrapper.vertical button span {
    flex: 1 1 auto;
}
.social-login-wrapper button.login-button__facebook {
    border: 1px solid #1877F2;
    background-color: #1877F2;
    color: white;
}
.social-login-wrapper button.login-button__google {
    background-color: white;
    color: black;
    border: 1px solid #DEDEDE;
}
.social-login__error {
    display: flex;
    margin-top: 10px;
}
.social-login__error:empty {
    display: none;
    margin-top: 0;
}
