/**
 * Guard Dog Social Login Styles
 *
 * Styles for social login buttons on the WordPress login page.
 *
 * @package GuardDog
 * @since 1.9.30
 */

.guard-dog-social-login {
    margin: 16px 0 16px;
}

.guard-dog-social-login__divider {
    position: relative;
    text-align: center;
    margin: 16px 0;
}

.guard-dog-social-login__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dcdcde;
}

.guard-dog-social-login__divider span {
    position: relative;
    padding: 0 12px;
    background: #fff;
    color: #50575e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guard-dog-social-login__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guard-dog-social-login__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    background: #fff;
    color: #3c434a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.guard-dog-social-login__btn:hover {
    background: #f6f7f7;
    border-color: #8c8f94;
    color: #1d2327;
    text-decoration: none;
}

.guard-dog-social-login__btn:focus {
    outline: 2px solid #2271b1;
    outline-offset: -2px;
    border-color: #2271b1;
}

.guard-dog-social-login__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.guard-dog-social-login__icon svg {
    width: 20px;
    height: 20px;
}

.guard-dog-social-login__label {
    flex-shrink: 0;
}

.guard-dog-social-login__error {
    margin-top: 12px;
    padding: 8px 12px;
    background: #fcf0f1;
    border-left: 4px solid #d63638;
    color: #d63638;
    font-size: 13px;
}
