/* Sign-in card intro */
.login-intro {
    margin-bottom: 25px;
    text-align: center;
}

.login-intro .box-title {
    margin-bottom: 6px;
}

.login-intro__subtitle {
    margin: 0;
    color: #6b7780;
    font-size: 14px;
}

/* Single sign-on login buttons */
.sso-buttons {
    margin-top: 10px;
}

.sso-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #3c4043;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.sso-button:hover,
.sso-button:focus {
    background-color: #f7f8f8;
    color: #3c4043;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.sso-button__icon {
    width: 20px;
    height: 20px;
}

.sso-button__label {
    line-height: 20px;
}

.sso-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #98a6ad;
    text-align: center;
}

.sso-divider::before,
.sso-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.sso-divider span {
    padding: 0 12px;
    font-size: 12px;
    text-transform: uppercase;
}
