.social-auth-container {
    margin: 1.25rem 0;
    text-align: center;
}

.social-auth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.google-btn,
.apple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 0 1.25rem;
    border-radius: 10px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
    box-sizing: border-box;
}

.google-btn {
    background-color: #fff;
    border: 1px solid #dadce0;
    color: #3c4043;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #c6c9cc;
    box-shadow: 0 4px 12px rgba(60, 64, 67, 0.12);
    transform: translateY(-1px);
}

.google-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.apple-btn {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.apple-btn:hover {
    background: #1c1c1e;
    border-color: #1c1c1e;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
    color: #fff;
}

.apple-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

.apple-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.apple-btn__icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.apple-btn__label {
    white-space: nowrap;
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    color: #666;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-separator span {
    padding: 0 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}
