.card{
    width: 100%;
    max-width: 736px;
    padding: 1em;
    background-color: white;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 16px auto;
    -webkit-box-shadow: 0px 4px 8px 0px #0000001A;
            box-shadow: 0px 4px 8px 0px #0000001A;
}

.card__button-container{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.25em;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.card__page-link__container{
    text-align: center;
}

.card__page-link__paragraph{
    margin: 1.5em 0 .65em 0;
}

.form-control__action-button--passwordless-icon {
    background-image: url('../img/passkey.webp');
    width: 2.5em;
    height: 2.5em;
    background-size: 1.35em;
    background-repeat: no-repeat;
    background-position: center;
}

.form-control__action-button--passwordless {
    width: 100%;
    padding-right: 1rem;
}

#webauthnContainer {
    text-align: center;
    width: 80%;
}

#webauthnContainer .separator {
    overflow: hidden;
    margin: 2em 0 2em;
}

.separator > span {
    position: relative;
    display: inline-block;
}

.separator > span:before,
.separator > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: #D2D2D2;
}

.separator > span:before {
    right: 100%;
    margin-right: 15px;
}

.separator > span:after {
    left: 100%;
    margin-left: 15px;
}
     
.kcAuthenticatorWebAuthnPasswordlessClass {
    background-image: url('../img/passkey.webp');
    width: 1.5em;
    height: 1.5em;
    background-size: 1.35em;
    background-repeat: no-repeat;
    background-position: center;
}
    
.form-control__action-button--passwordless {
    width: 16rem;
    padding: 9px;
    gap: 10px;
}

.authenticators-container{
    display: flex;
    gap: 1rem;
}

.link-button { 
     background: none;
     border: none;
     color: #1a0dab;
     text-decoration: underline;
     cursor: pointer;
}

.authenticator {
    display: inherit;
    border: 2px solid #ef3829;
    width: 36px;
    height: 36px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.authenticator:hover{
    background-color: #ef3829;
    backdrop-filter: brightness(0.5);
    transition: 0.5s linear;
    border-color: rgb(24, 24, 24);
}

.kc-social-provider-logo:hover{
    opacity: 0.6;
    backdrop-filter: brightness(0.5);
    transition: 0.5s linear;
}

.action-link {
    color: #ef3829;
    font-size: 12px;
    font-family: "Roboto Medium", sans-serif;
    text-decoration: none;
    font-weight: bold;
}

.back-to-login-link {
    text-decoration: underline;
}