.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.oauth-btn {
    height: 68px;
    border-radius: 999px;
    border: 1.5px solid #E8E8EE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    transition:
        transform .18s,
        box-shadow .18s,
        border-color .18s;
}

.oauth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(20, 20, 40, 0.08);
    border-color: #D8D8E2;
}

.social-btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.oauth-btn-text {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.oauth-divider {
    position: relative;
    text-align: center;
    margin: 4px 0 20px;
}

.oauth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--c-line);
}

.oauth-divider span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 12px;
    font-size: 12px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}