.sso-auth-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

/*.sso-auth-wrapper.login {*/
/*    margin-top: 30px;*/
/*}*/

.sso-auth-wrapper.register {
    margin-bottom: 10px;
}

.social-btn {
    color: #000;
    border: 1px solid #dcdce5;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 12px 40px 12px 15px;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none !important;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(220, 220, 229, .5);
}
.social-btn.register {
    width: 100%;
}

/*.social-btn.login {*/
/*    width: 80%;*/
/*    margin-left: 10%;*/
/*}*/

.social-btn.google.solid {
    color: #fff;
    background-color: #4285f4;
    border-style: none;
    font-weight: 400;
}
.social-btn.google.solid.disabled,
.social-btn.google.solid.disabled:hover {
    background-color: #8a8888;
    cursor: default;
    opacity: 0.7;
}
.social-content {
    grid-column-gap: 20px;
    align-items: center;
    display: flex;
}
.social-image.white-card {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 4px;
    margin: -8px -5px -8px -11px;
    padding: 9px;
    display: block;
}
.question-mark {
    text-align: right;
    padding: 13px;
    text-decoration: underline;
    position: absolute;
    display: flex;
    align-items: center;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
    z-index: 10;
}

.question-image.white {
    filter: invert();
}

.loader-image {
    width: 30px;
}

/*.loader-image.active {*/
/*    display: block;*/
/*}*/

.social-text {
    background-color: rgba(0, 0, 0, 0);
}
.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.social-btn.google.solid:hover {
    background-color: #005efa;
}
.social-btn.google.solid {
    color: #fff;
    background-color: #4285f4;
    border-style: none;
    font-weight: 400;
}
.social-btn.google:hover {
    border-color: #4285f4;
}
.social-btn:hover {
    box-shadow: none;
    border-color: #374252;
}

/* Style for the default HTML5 tooltip */
.question-mark[tooltip]::after {
    content: attr(tooltip);
    background-color: #333;
    width: 200px;
    text-align: left;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    position: absolute;
    right: -40px;
    top: 40px;
    align-self: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    margin-left: 15px;
    overflow: visible;
}

.question-mark:hover[tooltip]::after {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 840px) {
    .question-mark[tooltip]::after {
        width: 105px;
    }
}
@media (max-width: 669px) {
    .question-mark, .question-mark[tooltip]::after {
        display: none;
    }
}