.social-login-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8fafc;
}

.social-login-container {
    max-width: 460px;
    width: 100%;
}

.social-login-card {
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-login-icon {
    margin-bottom: 20px;
}

.social-login-icon svg {
    background: #eef2ff;
    padding: 12px;
    border-radius: 50%;
}

.social-login-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.social-login-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-login-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background: #667eea;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background: #5a6fd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.btn-light {
    background: #f3f4f6;
    color: #374151;
    width: 100%;
}

.btn-light:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.social-login-note {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .social-login-card {
        padding: 30px 20px;
    }

    .social-login-title {
        font-size: 20px;
    }

    .social-login-subtitle {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}